aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/scalpel/scalpel_inventory.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2016-01-31 18:42:14 +0100
committerMartin Kiewitz2016-01-31 18:42:14 +0100
commit5299750cf9dce3dec59b7bd95bbac2a25ce62bfd (patch)
treeb7de30ae92c3c21ae59b1ae8fb00abf632a12318 /engines/sherlock/scalpel/scalpel_inventory.cpp
parent56423709482a54f6b65488b80bd674b1965c48c2 (diff)
downloadscummvm-rg350-5299750cf9dce3dec59b7bd95bbac2a25ce62bfd.tar.gz
scummvm-rg350-5299750cf9dce3dec59b7bd95bbac2a25ce62bfd.tar.bz2
scummvm-rg350-5299750cf9dce3dec59b7bd95bbac2a25ce62bfd.zip
SHERLOCK: SS: fix warnings
thanks to eriktorbjorn for pointing those out
Diffstat (limited to 'engines/sherlock/scalpel/scalpel_inventory.cpp')
-rw-r--r--engines/sherlock/scalpel/scalpel_inventory.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/engines/sherlock/scalpel/scalpel_inventory.cpp b/engines/sherlock/scalpel/scalpel_inventory.cpp
index 19e0b95f7c..c3e20295fd 100644
--- a/engines/sherlock/scalpel/scalpel_inventory.cpp
+++ b/engines/sherlock/scalpel/scalpel_inventory.cpp
@@ -154,16 +154,16 @@ void ScalpelInventory::invCommands(bool slamIt) {
true, _fixedTextGive);
screen.print(Common::Point(INVENTORY_POINTS[4][2], CONTROLS_Y1 + 1),
_invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND,
- "^^", false); // 2 arrows pointing to the left
+ "^^"); // 2 arrows pointing to the left
screen.print(Common::Point(INVENTORY_POINTS[5][2], CONTROLS_Y1 + 1),
_invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND,
- "^", false); // 2 arrows pointing to the left
+ "^"); // 2 arrows pointing to the left
screen.print(Common::Point(INVENTORY_POINTS[6][2], CONTROLS_Y1 + 1),
(_holdings - _invIndex <= 6) ? COMMAND_NULL : COMMAND_FOREGROUND,
- "_", false); // 1 arrow pointing to the right
+ "_"); // 1 arrow pointing to the right
screen.print(Common::Point(INVENTORY_POINTS[7][2], CONTROLS_Y1 + 1),
(_holdings - _invIndex <= 6) ? COMMAND_NULL : COMMAND_FOREGROUND,
- "__", false); // 2 arrows pointing to the right
+ "__"); // 2 arrows pointing to the right
if (_invMode != INVMODE_LOOK)
ui.clearInfo();
} else {
@@ -181,16 +181,16 @@ void ScalpelInventory::invCommands(bool slamIt) {
false, _fixedTextGive);
screen.gPrint(Common::Point(INVENTORY_POINTS[4][2], CONTROLS_Y1),
_invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND,
- "^^", false); // 2 arrows pointing to the left
+ "^^"); // 2 arrows pointing to the left
screen.gPrint(Common::Point(INVENTORY_POINTS[5][2], CONTROLS_Y1),
_invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND,
- "^", false); // 1 arrow pointing to the left
+ "^"); // 1 arrow pointing to the left
screen.gPrint(Common::Point(INVENTORY_POINTS[6][2], CONTROLS_Y1),
(_holdings - _invIndex < 7) ? COMMAND_NULL : COMMAND_FOREGROUND,
- "_", false); // 1 arrow pointing to the right
+ "_"); // 1 arrow pointing to the right
screen.gPrint(Common::Point(INVENTORY_POINTS[7][2], CONTROLS_Y1),
(_holdings - _invIndex < 7) ? COMMAND_NULL : COMMAND_FOREGROUND,
- "__", false); // 2 arrows pointing to the right
+ "__"); // 2 arrows pointing to the right
}
}