aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/verbs.cpp')
-rw-r--r--scumm/verbs.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 91b0d7438b..9095edf07e 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -248,7 +248,7 @@ void ScummEngine::redrawV2Inventory() {
if (_inventoryOffset > 0) {
_string[1].xpos = v2_mouseover_boxes[kInventoryUpArrow].rect.left;
_string[1].ypos = v2_mouseover_boxes[kInventoryUpArrow].rect.top + vs->topline;
- _string[1].color = v2_mouseover_boxes[kInventoryUpArrow].color;
+ _string[1].color = v2_mouseover_boxes[kInventoryUpArrow].color;
drawString(1, (const byte *)" \1\2");
}
@@ -256,7 +256,7 @@ void ScummEngine::redrawV2Inventory() {
if (_inventoryOffset + 4 < getInventoryCount(_scummVars[VAR_EGO])) {
_string[1].xpos = v2_mouseover_boxes[kInventoryDownArrow].rect.left;
_string[1].ypos = v2_mouseover_boxes[kInventoryDownArrow].rect.top + vs->topline;
- _string[1].color = v2_mouseover_boxes[kInventoryDownArrow].color;
+ _string[1].color = v2_mouseover_boxes[kInventoryDownArrow].color;
drawString(1, (const byte *)" \3\4");
}
}