mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-13 21:31:53 +00:00
o_printStr() always uses box1 for FF
svn-id: r21592
This commit is contained in:
parent
778a528df3
commit
a4a3239715
@ -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);
|
||||
|
Loading…
Reference in New Issue
Block a user