diff options
author | Bendegúz Nagy | 2016-06-22 20:49:19 +0200 |
---|---|---|
committer | Bendegúz Nagy | 2016-08-26 23:02:22 +0200 |
commit | 45419f971a0d12ebec0e3f5b7c02312edfb6d75f (patch) | |
tree | b035e99d315a6afd02e6a827d12584b414a211de | |
parent | 9538db0b6100b407d3ed1450256ffdc63efef4c2 (diff) | |
download | scummvm-rg350-45419f971a0d12ebec0e3f5b7c02312edfb6d75f.tar.gz scummvm-rg350-45419f971a0d12ebec0e3f5b7c02312edfb6d75f.tar.bz2 scummvm-rg350-45419f971a0d12ebec0e3f5b7c02312edfb6d75f.zip |
DM: Add color setting to TextMan::printTextToBitmap
-rw-r--r-- | engines/dm/text.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/engines/dm/text.cpp b/engines/dm/text.cpp index 116058de35..d6d005fed4 100644 --- a/engines/dm/text.cpp +++ b/engines/dm/text.cpp @@ -14,6 +14,12 @@ void TextMan::printTextToBitmap(byte* destBitmap, uint16 destPixelWidth, uint16 uint16 nextY = destY; byte *srcBitmap = _vm->_displayMan->getBitmap(kFontGraphicIndice); + byte *tmp = _vm->_displayMan->_tmpBitmap; + for (uint16 i = 0; i < (kLetterWidth + 1) * (kLetterHeight + 1) * 128; ++i) { + tmp[i] = srcBitmap[i] ? textColor : bgColor; + } + srcBitmap = tmp; + for (char *begin = text, *end = text + textLength; begin != end; ++begin) { // Note: this does no wraps in the middle of words |