diff options
author | Paul Gilbert | 2015-04-05 22:15:46 -0500 |
---|---|---|
committer | Paul Gilbert | 2015-04-05 22:15:46 -0500 |
commit | 3ef78ed7e1fccaf6f31f4e317196cace6af577a2 (patch) | |
tree | 64c593423db7b41a25f5eff831141dba677c68c2 | |
parent | 900471834987c32b23b3162e2d2f40bbcc2b593d (diff) | |
download | scummvm-rg350-3ef78ed7e1fccaf6f31f4e317196cace6af577a2.tar.gz scummvm-rg350-3ef78ed7e1fccaf6f31f4e317196cace6af577a2.tar.bz2 scummvm-rg350-3ef78ed7e1fccaf6f31f4e317196cace6af577a2.zip |
SHERLOCK: Fix button text for inventory display
-rw-r--r-- | engines/sherlock/inventory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sherlock/inventory.cpp b/engines/sherlock/inventory.cpp index f7706c9d64..e58c4ddac6 100644 --- a/engines/sherlock/inventory.cpp +++ b/engines/sherlock/inventory.cpp @@ -314,16 +314,16 @@ void Inventory::invCommands(bool slamIt) { screen.buttonPrint(Common::Point(INVENTORY_POINTS[3][2], CONTROLS_Y1), _invMode == 3 ? COMMAND_HIGHLIGHTED : COMMAND_FOREGROUND, false, "Give"); - screen.print(Common::Point(INVENTORY_POINTS[4][2], CONTROLS_Y1), + screen.gPrint(Common::Point(INVENTORY_POINTS[4][2], CONTROLS_Y1), _invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND, "^^"); - screen.print(Common::Point(INVENTORY_POINTS[5][2], CONTROLS_Y1), + screen.gPrint(Common::Point(INVENTORY_POINTS[5][2], CONTROLS_Y1), _invIndex == 0 ? COMMAND_NULL : COMMAND_FOREGROUND, "^"); - screen.print(Common::Point(INVENTORY_POINTS[6][2], CONTROLS_Y1), + screen.gPrint(Common::Point(INVENTORY_POINTS[6][2], CONTROLS_Y1), (_holdings - _invIndex < 7) ? COMMAND_NULL : COMMAND_FOREGROUND, "_"); - screen.print(Common::Point(INVENTORY_POINTS[7][2], CONTROLS_Y1), + screen.gPrint(Common::Point(INVENTORY_POINTS[7][2], CONTROLS_Y1), (_holdings - _invIndex < 7) ? COMMAND_NULL : COMMAND_FOREGROUND, "__"); } |