diff options
Diffstat (limited to 'apps/plugins/snake.c')
| -rw-r--r-- | apps/plugins/snake.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/snake.c b/apps/plugins/snake.c index 120485a..5e591ca 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; |