diff options
author | Travis Howell | 2006-01-12 00:28:17 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-12 00:28:17 +0000 |
commit | b3826575393d324f703e733a99468b97ccc0456c (patch) | |
tree | db4bdfcfeb0cb6c2dc4a0ddd651d0aeb837cd1b5 /simon | |
parent | 0ff7519d0eacdd1256f4c260637e5fe11f411a9a (diff) | |
download | scummvm-rg350-b3826575393d324f703e733a99468b97ccc0456c.tar.gz scummvm-rg350-b3826575393d324f703e733a99468b97ccc0456c.tar.bz2 scummvm-rg350-b3826575393d324f703e733a99468b97ccc0456c.zip |
Minor changes for FF.
svn-id: r19987
Diffstat (limited to 'simon')
-rw-r--r-- | simon/simon.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/simon/simon.cpp b/simon/simon.cpp index 4148b09cb3..7b671957d2 100644 --- a/simon/simon.cpp +++ b/simon/simon.cpp @@ -1619,6 +1619,16 @@ void SimonEngine::setup_cond_c_helper() { goto out_of_here; } + if (getGameType() == GType_FF) { + if (_variableArray[254] == 63) { + hitarea_stuff_helper(); + } else if (_variableArray[254] == 75) { + hitarea_stuff_helper(); + _variableArray[60] = 9999; + goto out_of_here; + } + } + delay(100); } while (_lastHitArea3 == (HitArea *) 0xFFFFFFFF || _lastHitArea3 == 0); |