Skip to content

Commit

Permalink
KYRA: (EOB) - fix minor glitch in hp and food bar graphs
Browse files Browse the repository at this point in the history
  • Loading branch information
athrxx committed Feb 21, 2012
1 parent d192fed commit 66ba934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/kyra/gui_rpg.cpp
Expand Up @@ -72,7 +72,7 @@ void KyraRpgEngine::gui_drawHorizontalBarGraph(int x, int y, int w, int h, int32
screen()->fillRect(x, y, x + t - 1, y + h, col1);

if (t < w && col2)
screen()->fillRect(x + t, y, x + w, y + h, col2);
screen()->fillRect(x + t, y, x + w - 1, y + h, col2);
}

void KyraRpgEngine::gui_initButtonsFromList(const int16 *list) {
Expand Down

0 comments on commit 66ba934

Please sign in to comment.