aboutsummaryrefslogtreecommitdiff
path: root/kyra
diff options
context:
space:
mode:
authorGregory Montoir2005-08-19 22:23:13 +0000
committerGregory Montoir2005-08-19 22:23:13 +0000
commitb0d1fd747f267bc3a1cb08997f1283e17628b0ac (patch)
tree3877b50dabc2c9707a070358786b80a3dbe95c37 /kyra
parent24265fd3dd1681835f63e3c901158adef1ec5bc5 (diff)
downloadscummvm-rg350-b0d1fd747f267bc3a1cb08997f1283e17628b0ac.tar.gz
scummvm-rg350-b0d1fd747f267bc3a1cb08997f1283e17628b0ac.tar.bz2
scummvm-rg350-b0d1fd747f267bc3a1cb08997f1283e17628b0ac.zip
correction in setTextColor()
svn-id: r18705
Diffstat (limited to 'kyra')
-rw-r--r--kyra/screen.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kyra/screen.cpp b/kyra/screen.cpp
index cdab6c5999..681e613d64 100644
--- a/kyra/screen.cpp
+++ b/kyra/screen.cpp
@@ -1,5 +1,5 @@
/* ScummVM - Scumm Interpreter
- * Copyright (C) 2003-2005 The ScummVM project
+ * Copyright (C) 2004-2005 The ScummVM project
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
@@ -164,7 +164,7 @@ void Screen::setAnimBlockPtr(uint8 *p, int size) {
void Screen::setTextColorMap(const uint8 *cmap) {
debug(9, "Screen::setTextColorMap(0x%X)", cmap);
- setTextColor(cmap, 0, 15);
+ setTextColor(cmap, 0, 11);
}
void Screen::setTextColor(const uint8 *cmap, int a, int b) {