aboutsummaryrefslogtreecommitdiff
path: root/simon
diff options
context:
space:
mode:
authorTravis Howell2005-10-06 14:54:25 +0000
committerTravis Howell2005-10-06 14:54:25 +0000
commit36295605ab706f70e1b773de14242839889b0a81 (patch)
treeaebfe52d66f15d9666f010253ebe7ef1b756a857 /simon
parente91503cb1cd067ba001f53d3c1339d6ed3c56488 (diff)
downloadscummvm-rg350-36295605ab706f70e1b773de14242839889b0a81.tar.gz
scummvm-rg350-36295605ab706f70e1b773de14242839889b0a81.tar.bz2
scummvm-rg350-36295605ab706f70e1b773de14242839889b0a81.zip
Add slight difference.
svn-id: r18949
Diffstat (limited to 'simon')
-rw-r--r--simon/items.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/simon/items.cpp b/simon/items.cpp
index 62fd13d537..5869749ea6 100644
--- a/simon/items.cpp
+++ b/simon/items.cpp
@@ -741,7 +741,11 @@ int SimonEngine::runScript() {
case 133:{ /* load game */
_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, true);
- o_load_game();
+ if (_game == GAME_FEEBLEFILES) {
+ load_game(readVariable(55));
+ } else {
+ o_load_game();
+ }
_system->setFeatureState(OSystem::kFeatureVirtualKeyboard, false);
}
break;