aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTorbjörn Andersson2009-02-13 06:17:43 +0000
committerTorbjörn Andersson2009-02-13 06:17:43 +0000
commit5bf56fe991ef585b554ca836aa5a6ffc44afe67a (patch)
treec885d37cec20e8a71e58198ccf943227bdfcff0b
parent1eb9c35255f05d5384c1bc1a21621e4b4202f524 (diff)
downloadscummvm-rg350-5bf56fe991ef585b554ca836aa5a6ffc44afe67a.tar.gz
scummvm-rg350-5bf56fe991ef585b554ca836aa5a6ffc44afe67a.tar.bz2
scummvm-rg350-5bf56fe991ef585b554ca836aa5a6ffc44afe67a.zip
Changed OverlayColor from int16 to uint16 to fix the strange colours that
appeared in the GUI with r36288. At least, it fixes the problem for me. I hope I didn't accidentally break anything else. svn-id: r36298
-rw-r--r--common/scummsys.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/scummsys.h b/common/scummsys.h
index c349cc8c83..5e102159c3 100644
--- a/common/scummsys.h
+++ b/common/scummsys.h
@@ -449,7 +449,7 @@
typedef byte OverlayColor;
#else
// 15/16 bit color mode everywhere else...
- typedef int16 OverlayColor;
+ typedef uint16 OverlayColor;
#endif