mirror of
https://github.com/libretro/scummvm.git
synced 2025-03-03 00:35:54 +00:00
Add FF difference in o_screenTextMsg()
svn-id: r22216
This commit is contained in:
parent
80bc64b951
commit
ffe434a949
@ -1312,8 +1312,10 @@ void SimonEngine::o_screenTextMsg() {
|
||||
tl = getTextLocation(vgaSpriteId);
|
||||
if (_speech && speechId != 0)
|
||||
playSpeech(speechId, vgaSpriteId);
|
||||
if ((getGameType() == GType_SIMON2) && (getFeatures() & GF_TALKIE) && speechId == 0)
|
||||
if (((getGameType() == GType_SIMON2 && (getFeatures() & GF_TALKIE)) || getGameType() == GType_FF) &&
|
||||
speechId == 0) {
|
||||
stopAnimateSimon2(2, vgaSpriteId + 2);
|
||||
}
|
||||
|
||||
if (string_ptr != NULL && (speechId == 0 || _subtitles))
|
||||
printScreenText(vgaSpriteId, color, (const char *)string_ptr, tl->x, tl->y, tl->width);
|
||||
|
Loading…
x
Reference in New Issue
Block a user