Commit 9832038c authored by Projects's avatar Projects

Fix score overflows in the ball game.

parent da611744
...@@ -44,10 +44,10 @@ ...@@ -44,10 +44,10 @@
#define MODE_NORM 0 #define MODE_NORM 0
#define MODE_HIGH 1 #define MODE_HIGH 1
unsigned int win_x0, win_y0, win_x1, win_y1; int win_x0, win_y0, win_x1, win_y1;
unsigned int score, highscore; int score, highscore;
int mode; int mode;
unsigned int ball_x, ball_y; int ball_x, ball_y;
static void game_redraw(struct ui_widget *w) static void game_redraw(struct ui_widget *w)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment