mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 18:22:07 +00:00
Error messages refer to "undefined" symbols and sections
This commit is contained in:
@@ -370,9 +370,9 @@ void fstk_RunMacro(std::string const ¯oName, std::shared_ptr<MacroArgs> macr
|
||||
|
||||
if (!macro) {
|
||||
if (sym_IsPurgedExact(macroName)) {
|
||||
error("Macro \"%s\" not defined; it was purged", macroName.c_str());
|
||||
error("Undefined macro \"%s\"; it was purged", macroName.c_str());
|
||||
} else {
|
||||
error("Macro \"%s\" not defined", macroName.c_str());
|
||||
error("Undefined macro \"%s\"", macroName.c_str());
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user