aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTravis Howell2006-04-04 11:53:13 +0000
committerTravis Howell2006-04-04 11:53:13 +0000
commita4a32397158dc3ae024b3fdeb95adaae3e851805 (patch)
treedd7760b284d1c18abff8f95510e722b55ddbb13b
parent778a528df36ad763084e8b025f51830593e35645 (diff)
downloadscummvm-rg350-a4a32397158dc3ae024b3fdeb95adaae3e851805.tar.gz
scummvm-rg350-a4a32397158dc3ae024b3fdeb95adaae3e851805.tar.bz2
scummvm-rg350-a4a32397158dc3ae024b3fdeb95adaae3e851805.zip
o_printStr() always uses box1 for FF
svn-id: r21592
-rw-r--r--engines/simon/simon.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/engines/simon/simon.cpp b/engines/simon/simon.cpp
index 350b00acf2..9ddb949035 100644
--- a/engines/simon/simon.cpp
+++ b/engines/simon/simon.cpp
@@ -2292,7 +2292,10 @@ void SimonEngine::o_printStr() {
if (getFeatures() & GF_TALKIE)
speech_id = (uint16)getNextWord();
- tl = getTextLocation(vgaSpriteId);
+ if (getGameType() == GType_FF)
+ tl = getTextLocation(1);
+ else
+ tl = getTextLocation(vgaSpriteId);
if (_speech && speech_id != 0)
playSpeech(speech_id, vgaSpriteId);