diff options
| author | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 22:53:12 +0000 |
|---|---|---|
| committer | Andrew Mahone <andrew.mahone@gmail.com> | 2009-01-17 22:53:12 +0000 |
| commit | 0b41f0599f62ec9099197bbe6f4dd7144cebe0df (patch) | |
| tree | 927f23ea1a943777baa0e7cf1f8070608c3847d7 /apps/plugins/chopper.c | |
| parent | 2fecb713ea07f06b5219a75c95909b986c2468a5 (diff) | |
| download | rockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.zip rockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.tar.gz rockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.tar.bz2 rockbox-0b41f0599f62ec9099197bbe6f4dd7144cebe0df.tar.xz | |
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/chopper.c')
| -rw-r--r-- | apps/plugins/chopper.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/chopper.c b/apps/plugins/chopper.c index 971aeb8..594c4e4 100644 --- a/apps/plugins/chopper.c +++ b/apps/plugins/chopper.c @@ -181,7 +181,7 @@ static int score; #define MAX_POINTS 50000 static struct configdata config[] = { - {TYPE_INT, 0, MAX_POINTS, &highscore, "highscore", NULL, NULL} + {TYPE_INT, 0, MAX_POINTS, { .int_p = &highscore }, "highscore", NULL} }; struct CBlock |