1
0
Fork 0

Codefix 20e57a02a28: String parameters were off by one.

pull/13810/head
frosch 2025-03-14 13:52:53 +01:00
parent 754311a779
commit e631d33be1
1 changed files with 1 additions and 1 deletions

View File

@ -521,7 +521,7 @@ void ErrorUnknownCallbackResult(uint32_t grfid, uint16_t cbid, uint16_t cb_res)
/* debug output */ /* debug output */
Debug(grf, 0, "{}", StrMakeValid(GetString(STR_NEWGRF_BUGGY, grfconfig->GetName()))); Debug(grf, 0, "{}", StrMakeValid(GetString(STR_NEWGRF_BUGGY, grfconfig->GetName())));
Debug(grf, 0, "{}", StrMakeValid(GetString(STR_NEWGRF_BUGGY_UNKNOWN_CALLBACK_RESULT, cbid, cb_res))); Debug(grf, 0, "{}", StrMakeValid(GetString(STR_NEWGRF_BUGGY_UNKNOWN_CALLBACK_RESULT, std::monostate{}, cbid, cb_res)));
} }
/** /**