[Scummvm-git-logs] scummvm master -> 1367ee7c863fcb42e809a928d35b67ccb17d5b1c
mduggan
noreply at scummvm.org
Sun Oct 5 08:24:00 UTC 2025
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
1367ee7c86 ACCESS: Fix possible font color issue on MM establish
Commit: 1367ee7c863fcb42e809a928d35b67ccb17d5b1c
https://github.com/scummvm/scummvm/commit/1367ee7c863fcb42e809a928d35b67ccb17d5b1c
Author: Matthew Duggan (mgithub at guarana.org)
Date: 2025-10-05T19:23:44+11:00
Commit Message:
ACCESS: Fix possible font color issue on MM establish
Changed paths:
engines/access/martian/martian_game.cpp
diff --git a/engines/access/martian/martian_game.cpp b/engines/access/martian/martian_game.cpp
index 8df0105e68f..7f912145ec5 100644
--- a/engines/access/martian/martian_game.cpp
+++ b/engines/access/martian/martian_game.cpp
@@ -359,8 +359,10 @@ void MartianEngine::dead(int deathId) {
void MartianEngine::establish(int estabIndex, int sub) {
_fonts._charSet._hi = 10;
+ Font::_fontColors[0] = 0xff;
Font::_fontColors[1] = 0xf7;
Font::_fontColors[2] = 0xff;
+ Font::_fontColors[3] = 0xf7;
_screen->_maxChars = 50;
_screen->_printOrg = _screen->_printStart = Common::Point(24, 18);
More information about the Scummvm-git-logs
mailing list