aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-04-09 09:08:22 +0000
committerTravis Howell2006-04-09 09:08:22 +0000
commit4a6be800cb74360823c860c80a85d3eb00762731 (patch)
tree6f2b2095b17ace8864bba35490bdd70be9850ad1
parent35a4b57189ec7442b75db0e65ca8cc49ec58ef32 (diff)
downloadscummvm-rg350-4a6be800cb74360823c860c80a85d3eb00762731.tar.gz
scummvm-rg350-4a6be800cb74360823c860c80a85d3eb00762731.tar.bz2
scummvm-rg350-4a6be800cb74360823c860c80a85d3eb00762731.zip
Fix clearing text window in oracle of FF
svn-id: r21717
-rw-r--r--engines/simon/items.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/engines/simon/items.cpp b/engines/simon/items.cpp
index 176bc52997..b2d7218945 100644
--- a/engines/simon/items.cpp
+++ b/engines/simon/items.cpp
@@ -1964,10 +1964,7 @@ void SimonEngine::o_setTextColor(uint color) {
void SimonEngine::o_unk_103() {
mouseOff();
removeIconArray(_curWindow);
- if (getGameType() == GType_FF)
- showMessageFormat("\x0E");
- else
- showMessageFormat("\x0C");
+ showMessageFormat("\x0C");
_oracleMaxScrollY = 0;
_noOracleScroll = 0;
mouseOn();