Correct subtitle colors in C64 maniac.

svn-id: r18180
This commit is contained in:
Travis Howell 2005-05-19 01:54:37 +00:00
parent ec400e60b6
commit 43a5aff7bc
2 changed files with 15 additions and 5 deletions

View file

@ -421,10 +421,12 @@ void ScummEngine_v2::decodeParseString() {
_string[textSlot].center = false;
_string[textSlot].overhead = false;
if (_gameId == GID_MANIAC) {
// Demos don't set subtitle color before display first subtitle.
if (_demoMode && _actorToPrintStrFor == 0xFF)
if (_gameId == GID_MANIAC && _actorToPrintStrFor == 0xFF) {
if (_platform == Common::kPlatformC64) {
_string[textSlot].color = 14;
} else if (_demoMode) {
_string[textSlot].color = (_version == 2) ? 15 : 1;
}
}
actorTalk(buffer);