summaryrefslogtreecommitdiffstats
path: root/apps/plugins/snake.c
diff options
context:
space:
mode:
authorThomas Jarosch <tomj@simonv.com>2011-03-02 23:43:54 +0000
committerThomas Jarosch <tomj@simonv.com>2011-03-02 23:43:54 +0000
commitf9f89cf5cb42a6540995bbb0c277e1f2e6b222b2 (patch)
tree1cede1c4f11f529e00bf48036778801160dc6e56 /apps/plugins/snake.c
parenta25153be6b0af205aa0c82dd2f3cba41221df2e5 (diff)
downloadrockbox-f9f89cf5cb42a6540995bbb0c277e1f2e6b222b2.tar.gz
rockbox-f9f89cf5cb42a6540995bbb0c277e1f2e6b222b2.zip
RaaA: Fix write locations of plugins
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29506 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/snake.c')
-rw-r--r--apps/plugins/snake.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/snake.c b/apps/plugins/snake.c
index 120485a248..5e591caab3 100644
--- a/apps/plugins/snake.c
+++ b/apps/plugins/snake.c
@@ -254,7 +254,7 @@ dir is the current direction of the snake - 0=up, 1=right, 2=down, 3=left;
#define BOARD_HEIGHT (LCD_HEIGHT/4)
#define CONFIG_FILE_NAME "snake.cfg"
-#define SCORE_FILE PLUGIN_GAMES_DIR "/snake.score"
+#define SCORE_FILE PLUGIN_GAMES_DATA_DIR "/snake.score"
#define NUM_SCORES 5
static int board[BOARD_WIDTH][BOARD_HEIGHT],snakelength;