build: fix debug build (#461)

Fix build break of DEBUG build after updating FMT lib
This commit is contained in:
bicarus-dev
2025-12-18 02:48:26 -08:00
committed by GitHub
parent 371c957025
commit f726748ebe
+9 -2
View File
@@ -95,12 +95,19 @@ namespace acio2emu {
break; break;
default: default:
log_fatal("acio2emu", "cannot set step: unknown value: {}", s); log_fatal(
"acio2emu",
"cannot set step: unknown value: {}",
static_cast<uint32_t>(s));
break; break;
} }
if (!valid) { if (!valid) {
log_fatal("acio2emu", "illegal transition detected: {} -> {}", step_, s); log_fatal(
"acio2emu",
"illegal transition detected: {} -> {}",
static_cast<uint32_t>(step_),
static_cast<uint32_t>(s));
} }
#endif #endif
step_ = s; step_ = s;