Correct subtitle colors in C64 maniac.
svn-id: r18180
This commit is contained in:
parent
ec400e60b6
commit
43a5aff7bc
2 changed files with 15 additions and 5 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue