aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorTravis Howell2006-06-19 10:29:36 +0000
committerTravis Howell2006-06-19 10:29:36 +0000
commit632caa1a1e86d1957c846d1e61c30af63d60d513 (patch)
tree804a9d58cc79abd2c5e55e7ebaae95b521ed9490 /engines
parent032de3589b86173b90b55e1b9516af3e421a8c57 (diff)
downloadscummvm-rg350-632caa1a1e86d1957c846d1e61c30af63d60d513.tar.gz
scummvm-rg350-632caa1a1e86d1957c846d1e61c30af63d60d513.tar.bz2
scummvm-rg350-632caa1a1e86d1957c846d1e61c30af63d60d513.zip
Fix inventory colors regression in C64 maniac
svn-id: r23180
Diffstat (limited to 'engines')
-rw-r--r--engines/scumm/verbs.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/scumm/verbs.cpp b/engines/scumm/verbs.cpp
index 110b7d0708..9eb8e64859 100644
--- a/engines/scumm/verbs.cpp
+++ b/engines/scumm/verbs.cpp
@@ -119,14 +119,14 @@ void ScummEngine_v2::initV2MouseOver() {
int i;
int arrow_color, color, hi_color;
- if (_game.version == 1) {
- color = 16;
- hi_color = 7;
- arrow_color = 6;
- } else {
+ if (_game.version == 2) {
color = 13;
hi_color = 14;
arrow_color = 1;
+ } else {
+ color = 16;
+ hi_color = 7;
+ arrow_color = 6;
}
_mouseOverBoxV2 = -1;