summaryrefslogtreecommitdiff
path: root/apps/plugins/brickmania.c
diff options
context:
space:
mode:
authorAndrew Mahone <andrew.mahone@gmail.com>2009-01-17 22:53:12 +0000
committerAndrew Mahone <andrew.mahone@gmail.com>2009-01-17 22:53:12 +0000
commit0b41f0599f62ec9099197bbe6f4dd7144cebe0df (patch)
tree927f23ea1a943777baa0e7cf1f8070608c3847d7 /apps/plugins/brickmania.c
parent2fecb713ea07f06b5219a75c95909b986c2468a5 (diff)
downloadrockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.tar.gz
rockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.zip
unify pointers to value for configfile, and add TYPE_BOOL type, used by
pictureflow git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19786 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/brickmania.c')
-rw-r--r--apps/plugins/brickmania.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/brickmania.c b/apps/plugins/brickmania.c
index d0e4a593a0..5c915c92f2 100644
--- a/apps/plugins/brickmania.c
+++ b/apps/plugins/brickmania.c
@@ -813,7 +813,7 @@ int highscore;
813#define MAX_POINTS 200000 /* i dont think it needs to be more */ 813#define MAX_POINTS 200000 /* i dont think it needs to be more */
814static struct configdata config[] = 814static struct configdata config[] =
815{ 815{
816 {TYPE_INT, 0, MAX_POINTS, &highscore, "highscore", NULL, NULL} 816 {TYPE_INT, 0, MAX_POINTS, { .int_p = &highscore }, "highscore", NULL}
817}; 817};
818 818
819void int_game(int new_game) 819void int_game(int new_game)