Fix BaseArch::archId()

Fixes #1761

Signed-off-by: gatecat <gatecat@ds0.me>
This commit is contained in:
gatecat 2026-08-04 10:40:26 +02:00
parent 2fb1d1982f
commit 0d4fffae10
1 changed files with 1 additions and 1 deletions

View File

@ -142,7 +142,7 @@ template <typename R> struct BaseArch : ArchAPI<R>
// Default, trivial, implementations of Arch API functions for arches that don't need complex behaviours
// Basic config
virtual IdString archId() const override { return this->id(NPNR_STRINGIFY(ARCHNAME)); }
virtual IdString archId() const override { return this->id(NPNR_STRINGIFY_MACRO(ARCHNAME)); }
virtual IdString archArgsToId(typename R::ArchArgsT /*args*/) const override { return IdString(); }
virtual int getTilePipDimZ(int /*x*/, int /*y*/) const override { return 1; }
virtual char getNameDelimiter() const override { return ' '; }