Skip to content

Commit

Permalink
SHERLOCK: RT: Fix color of darts game power bar
Browse files Browse the repository at this point in the history
  • Loading branch information
dreammaster committed Oct 19, 2015
1 parent 2118dae commit dc5fb91
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions engines/sherlock/tattoo/tattoo_darts.cpp
Expand Up @@ -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;
Expand Down Expand Up @@ -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;

Expand Down

0 comments on commit dc5fb91

Please sign in to comment.