diff options
author | Chris Apers | 2003-11-28 09:32:02 +0000 |
---|---|---|
committer | Chris Apers | 2003-11-28 09:32:02 +0000 |
commit | eb7666efb38efd488dbba7d81f7e072fc2a87737 (patch) | |
tree | e60a2491d03dcebe5f9b23d54497c5ba98f1cf3d /backends | |
parent | f15cd37bc82353c81168210ee6047aeb94ef9439 (diff) | |
download | scummvm-rg350-eb7666efb38efd488dbba7d81f7e072fc2a87737.tar.gz scummvm-rg350-eb7666efb38efd488dbba7d81f7e072fc2a87737.tar.bz2 scummvm-rg350-eb7666efb38efd488dbba7d81f7e072fc2a87737.zip |
Added Simon data
svn-id: r11394
Diffstat (limited to 'backends')
-rw-r--r-- | backends/PalmOS/Src/scumm_globals.cpp | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/backends/PalmOS/Src/scumm_globals.cpp b/backends/PalmOS/Src/scumm_globals.cpp index 7f8cb9611b..32aaa3f8cc 100644 --- a/backends/PalmOS/Src/scumm_globals.cpp +++ b/backends/PalmOS/Src/scumm_globals.cpp @@ -42,9 +42,15 @@ static void GlbInitAll() { CALL_INIT(PlayerV2) } #endif +#ifndef DISABLE_SIMON + if (gVars->globals[GBVARS_SIMON]) { + CALL_INIT(Simon_Simon) + CALL_INIT(Simon_Charset) + } +#endif #ifndef DISABLE_QUEEN if (gVars->globals[GBVARS_QUEEN]) { - CALL_INIT(Restables) + CALL_INIT(Queen_Restables) } #endif } @@ -64,9 +70,15 @@ static void GlbReleaseAll() { CALL_RELEASE(PlayerV2) } #endif +#ifndef DISABLE_SIMON + if (gVars->globals[GBVARS_SIMON]) { + CALL_RELEASE(Simon_Simon) + CALL_RELEASE(Simon_Charset) + } +#endif #ifndef DISABLE_QUEEN if (gVars->globals[GBVARS_QUEEN]) { - CALL_RELEASE(Restables) + CALL_RELEASE(Queen_Restables) } #endif } |