diff options
author | Strangerke | 2015-01-02 00:16:46 +0100 |
---|---|---|
committer | Strangerke | 2015-01-02 00:16:46 +0100 |
commit | 0f11287b74664a509b85b30e722a1b706c0da0a7 (patch) | |
tree | c65c6c466485ea5fd30c5423df2fa02c88f9e12e | |
parent | e83e55e7be274ea884f144ce69849e8bc65b479b (diff) | |
download | scummvm-rg350-0f11287b74664a509b85b30e722a1b706c0da0a7.tar.gz scummvm-rg350-0f11287b74664a509b85b30e722a1b706c0da0a7.tar.bz2 scummvm-rg350-0f11287b74664a509b85b30e722a1b706c0da0a7.zip |
ACCESS: MM - Fix the color of notes
-rw-r--r-- | engines/access/martian/martian_game.cpp | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/engines/access/martian/martian_game.cpp b/engines/access/martian/martian_game.cpp index a14d7830b3..22a3c47928 100644 --- a/engines/access/martian/martian_game.cpp +++ b/engines/access/martian/martian_game.cpp @@ -82,6 +82,7 @@ void MartianEngine::sub13E1F() { _screen->_orgY1 = 124; _screen->_orgX2 = 297; _screen->_orgY2 = 199; + _screen->_lColor = 51; _screen->drawRect(); _events->showCursor(); @@ -103,15 +104,8 @@ void MartianEngine::sub13E4C(const Common::String &msg) { int width = 0; bool lastLine = false; do { - lastLine = _fonts._font2.getLine(lines, _screen->_maxChars * 6, line, width); - - // Set font colors - _fonts._font2._fontColors[0] = 0; - _fonts._font2._fontColors[1] = 27; - _fonts._font2._fontColors[2] = 28; - _fonts._font2._fontColors[3] = 29; - - _fonts._font2.drawString(_screen, line, _screen->_printOrg); + lastLine = _fonts._font1.getLine(lines, _screen->_maxChars * 6, line, width); + _fonts._font1.drawString(_screen, line, _screen->_printOrg); _screen->_printOrg = Common::Point(_screen->_printStart.x, _screen->_printOrg.y + 6); if (_screen->_printOrg.y == 196) { |