aboutsummaryrefslogtreecommitdiffstats
path: root/demos/games/minesweeper
diff options
context:
space:
mode:
authorJoel Bodenmann <joel.bodenmann@simulton.com>2019-05-01 17:07:43 +0200
committerJoel Bodenmann <joel.bodenmann@simulton.com>2019-05-01 17:07:43 +0200
commit39bde23dd9b156b05aad549ca1d9c0e5026378fe (patch)
treecd09969caf68e02571faecc53a3b8ba8e047f716 /demos/games/minesweeper
parent835f0f197f7fc7eecf5dcd36892987c71caa5caa (diff)
parentac4b7fc8b4ebfe080b6f3f6d90a1fe15221144cc (diff)
downloaduGFX-39bde23dd9b156b05aad549ca1d9c0e5026378fe.tar.gz
uGFX-39bde23dd9b156b05aad549ca1d9c0e5026378fe.tar.bz2
uGFX-39bde23dd9b156b05aad549ca1d9c0e5026378fe.zip
Merge branch 'develop'
Diffstat (limited to 'demos/games/minesweeper')
-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... :/