diff options
author | Travis Howell | 2006-06-12 00:47:30 +0000 |
---|---|---|
committer | Travis Howell | 2006-06-12 00:47:30 +0000 |
commit | e31ea42d1203aec0e9416aa308f5ae0aba9abbdf (patch) | |
tree | 01244e1129550ff326bf13a64ef3f4d5f05bb79c | |
parent | 70ae8021717ee5741114081f8d10308fbdefec28 (diff) | |
download | scummvm-rg350-e31ea42d1203aec0e9416aa308f5ae0aba9abbdf.tar.gz scummvm-rg350-e31ea42d1203aec0e9416aa308f5ae0aba9abbdf.tar.bz2 scummvm-rg350-e31ea42d1203aec0e9416aa308f5ae0aba9abbdf.zip |
Correct function called when exiting oracle or close up scene in FF. Fixes bug #1504393 - FF: Recursion error when using Chemistry Set
svn-id: r23050
-rw-r--r-- | engines/simon/simon.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp index 7d4e8ed9ad..869ae76600 100644 --- a/engines/simon/simon.cpp +++ b/engines/simon/simon.cpp @@ -1038,9 +1038,9 @@ void SimonEngine::setup_cond_c_helper() { if (getGameType() == GType_FF) { if (_variableArray[254] == 63) { - hitarea_stuff_helper(); + hitarea_stuff_helper_2(); } else if (_variableArray[254] == 75) { - hitarea_stuff_helper(); + hitarea_stuff_helper_2(); _variableArray[60] = 9999; goto out_of_here; } |