SCI: Changed the error message when execute_method() references an invalid export

svn-id: r52653
This commit is contained in:
Filippos Karapetis 2010-09-09 12:01:04 +00:00
parent c3c36cc59b
commit 16a7046519

View File

@ -318,10 +318,10 @@ ExecStack *execute_method(EngineState *s, uint16 script, uint16 pubfunct, StackP
// HACK: Temporarily switch to a warning in SCI32 games until we can figure out why Torin has
// an invalid exported function.
if (getSciVersion() >= SCI_VERSION_2)
warning("Request for invalid exported function 0x%x of script 0x%x", pubfunct, script);
warning("Request for invalid exported function 0x%x of script %d", pubfunct, script);
else
#endif
error("Request for invalid exported function 0x%x of script 0x%x", pubfunct, script);
error("Request for invalid exported function 0x%x of script %d", pubfunct, script);
return NULL;
}