o_printStr() always uses box1 for FF

svn-id: r21592
This commit is contained in:
Travis Howell 2006-04-04 11:53:13 +00:00
parent 778a528df3
commit a4a3239715

View File

@ -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);