aboutsummaryrefslogtreecommitdiff
path: root/scumm/verbs.cpp
diff options
context:
space:
mode:
authorMax Horn2004-09-30 22:39:13 +0000
committerMax Horn2004-09-30 22:39:13 +0000
commite29133df127a54fc765e413f759789745306c0dc (patch)
tree1f9c59949c986b00b415f3a942dfcb8f0901fe1e /scumm/verbs.cpp
parent63a5bb802751994ff5be0e57f9f748948f5d005a (diff)
downloadscummvm-rg350-e29133df127a54fc765e413f759789745306c0dc.tar.gz
scummvm-rg350-e29133df127a54fc765e413f759789745306c0dc.tar.bz2
scummvm-rg350-e29133df127a54fc765e413f759789745306c0dc.zip
Whitespace
svn-id: r15362
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");
}
}