aboutsummaryrefslogtreecommitdiff
path: root/engines/cine/prc.h
diff options
context:
space:
mode:
authorKari Salminen2008-07-14 23:10:51 +0000
committerKari Salminen2008-07-14 23:10:51 +0000
commit60357650e03c8504b06631bba3ca520285977f15 (patch)
treeb3f19914161bf8e52b4b9777d43e8fdbbb50c4ce /engines/cine/prc.h
parentba4ba85124d5cffdd75093abb6759f7588280f06 (diff)
downloadscummvm-rg350-60357650e03c8504b06631bba3ca520285977f15.tar.gz
scummvm-rg350-60357650e03c8504b06631bba3ca520285977f15.tar.bz2
scummvm-rg350-60357650e03c8504b06631bba3ca520285977f15.zip
Fix for bug #2016647 (FW: crash with italian amiga version).
- Consists of a workaround for a script bug that used local variable 251 when it should've used global variable 251. - Also added a fix for a crash when failing copy protection in Amiga or Atari ST versions of Future Wars. NOTE: That any of the Amiga or Atari ST versions of Future Wars haven't crashed right in the beginning before seems like plain luck because accessing local variable 251 is out of bounds! svn-id: r33068
Diffstat (limited to 'engines/cine/prc.h')
-rw-r--r--engines/cine/prc.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/cine/prc.h b/engines/cine/prc.h
index f5129d28b1..05bb240372 100644
--- a/engines/cine/prc.h
+++ b/engines/cine/prc.h
@@ -31,7 +31,7 @@ namespace Cine {
extern ScriptList globalScripts;
extern ScriptList objectScripts;
-void loadPrc(const char *pPrcName);
+bool loadPrc(const char *pPrcName);
} // End of namespace Cine