diff options
author | Travis Howell | 2006-01-11 01:47:40 +0000 |
---|---|---|
committer | Travis Howell | 2006-01-11 01:47:40 +0000 |
commit | 4e1778dc14d531f9c99bd82a2f589da6490ea198 (patch) | |
tree | d44741ddc8c0e2455792a0656a1ca5b38a72eb75 /simon | |
parent | 9fe1c9477d30032b012fcf374bc11c60c065894b (diff) | |
download | scummvm-rg350-4e1778dc14d531f9c99bd82a2f589da6490ea198.tar.gz scummvm-rg350-4e1778dc14d531f9c99bd82a2f589da6490ea198.tar.bz2 scummvm-rg350-4e1778dc14d531f9c99bd82a2f589da6490ea198.zip |
Fix FF crash.
svn-id: r19979
Diffstat (limited to 'simon')
-rw-r--r-- | simon/items.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/simon/items.cpp b/simon/items.cpp index 09bc26e19b..0c7775f8eb 100644 --- a/simon/items.cpp +++ b/simon/items.cpp @@ -1639,7 +1639,10 @@ void SimonEngine::o_unk_160(uint a) { void SimonEngine::o_unk_103() { mouseOff(); removeIconArray(_curWindow); - showMessageFormat("\x0C"); + if (getGameType() == GType_FF) + showMessageFormat("\x0E"); + else + showMessageFormat("\x0C"); mouseOn(); } |