mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 07:11:49 +00:00
SCI: Changed the error message when execute_method() references an invalid export
svn-id: r52653
This commit is contained in:
parent
c3c36cc59b
commit
16a7046519
@ -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;
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user