aboutsummaryrefslogtreecommitdiff
path: root/engines/sherlock/tattoo
diff options
context:
space:
mode:
authorPaul Gilbert2015-10-18 21:57:26 -0400
committerPaul Gilbert2015-10-18 21:57:26 -0400
commitdc5fb91ab2b69d98119f8ca62b46efe889cc9854 (patch)
tree0bc7c444a1fee4f15e22dd31031fd3cf98a84de6 /engines/sherlock/tattoo
parent2118daef220022dcc2a86e95c27418db62450fb2 (diff)
downloadscummvm-rg350-dc5fb91ab2b69d98119f8ca62b46efe889cc9854.tar.gz
scummvm-rg350-dc5fb91ab2b69d98119f8ca62b46efe889cc9854.tar.bz2
scummvm-rg350-dc5fb91ab2b69d98119f8ca62b46efe889cc9854.zip
SHERLOCK: RT: Fix color of darts game power bar
Diffstat (limited to 'engines/sherlock/tattoo')
-rw-r--r--engines/sherlock/tattoo/tattoo_darts.cpp5
1 files changed, 3 insertions, 2 deletions
diff --git a/engines/sherlock/tattoo/tattoo_darts.cpp b/engines/sherlock/tattoo/tattoo_darts.cpp
index 640872ed9e..274d80e3e1 100644
--- a/engines/sherlock/tattoo/tattoo_darts.cpp
+++ b/engines/sherlock/tattoo/tattoo_darts.cpp
@@ -30,7 +30,8 @@ namespace Tattoo {
enum {
DART_COLOR_FORE = 5,
- PLAYER_COLOR = 11
+ PLAYER_COLOR = 11,
+ DART_BAR_FORE = 208
};
static const int STATUS_INFO_X = 430;
@@ -921,7 +922,7 @@ int Darts::throwDart(int dartNum, int computer) {
if (_escapePressed)
return 0;
- height = doPowerBar(Common::Point(DART_BAR_VX, DART_HEIGHT_Y), DART_COLOR_FORE, targetPos.y, 1);
+ height = doPowerBar(Common::Point(DART_BAR_VX, DART_HEIGHT_Y), DART_BAR_FORE, targetPos.y, 1);
if (_escapePressed)
return 0;