diff options
| -rw-r--r-- | scumm/string.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/scumm/string.cpp b/scumm/string.cpp index 13810ee709..1f0ac6e8a7 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -676,7 +676,7 @@ void Scumm::initCharset(int charsetno) {  	_string[1].t_charset = charsetno;  	for (i = 0; i < 16; i++) -		_charsetColorMap[i] = _charsetData[_charset->getCurID()][i]; +		_charsetColorMap[i] = _charsetData[charsetno][i];  }  void Scumm::enqueueText(const byte *text, int x, int y, byte color, byte charset, bool center) { | 
