aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
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;