aboutsummaryrefslogtreecommitdiffstats
path: root/demos/games/minesweeper/mines.c
diff options
context:
space:
mode:
Diffstat (limited to 'demos/games/minesweeper/mines.c')
-rw-r--r--demos/games/minesweeper/mines.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/games/minesweeper/mines.c b/demos/games/minesweeper/mines.c
index 6d7cd38f..73eec368 100644
--- a/demos/games/minesweeper/mines.c
+++ b/demos/games/minesweeper/mines.c
@@ -19,7 +19,7 @@ static gI16 minesFlags; // Flag counter
static gI16 minesTime; // Time counter
static GTimer minesTimeCounterTimer;
static const char* minesGraph[] = {"1.bmp","2.bmp","3.bmp","4.bmp","5.bmp","6.bmp","7.bmp","8.bmp", "closed.bmp", "empty.bmp", "explode.bmp", "flag.bmp", "mine.bmp", "wrong.bmp"}; // 14 elements (0-13)
-static gdispImage minesImage;
+static gImage minesImage;
static gU8 minesStatusIconWidth = 0;
static gU8 minesStatusIconHeight = 0;
static gBool minesFirstGame = gTrue; // Just don't clear field for the first time, as we have black screen already... :/