diff options
| author | Michael Giacomelli <giac2000@hotmail.com> | 2009-05-27 20:31:07 +0000 |
|---|---|---|
| committer | Michael Giacomelli <giac2000@hotmail.com> | 2009-05-27 20:31:07 +0000 |
| commit | e299fb3716d904f818c063e1a316a875c530c794 (patch) | |
| tree | c89e34faf7e97b6ccd390ef67c66908ac538a271 /apps | |
| parent | dc4b3a4fe1a79a4ee0285596eeee4a541b9a6571 (diff) | |
| download | rockbox-e299fb3716d904f818c063e1a316a875c530c794.zip rockbox-e299fb3716d904f818c063e1a316a875c530c794.tar.gz rockbox-e299fb3716d904f818c063e1a316a875c530c794.tar.bz2 rockbox-e299fb3716d904f818c063e1a316a875c530c794.tar.xz | |
Commit next part of FS# 10138 by Teruaki Kawashima. Replace ROCKBOX_DIR and related defines with PLUGIN_APPS_DIR or PLUGIN_GAMES_DIR.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21103 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/dict.c | 4 | ||||
| -rw-r--r-- | apps/plugins/keybox.c | 2 | ||||
| -rw-r--r-- | apps/plugins/pegbox.c | 4 | ||||
| -rw-r--r-- | apps/plugins/stopwatch.c | 2 |
4 files changed, 6 insertions, 6 deletions
diff --git a/apps/plugins/dict.c b/apps/plugins/dict.c index 5c57f7b..0c1ddf3 100644 --- a/apps/plugins/dict.c +++ b/apps/plugins/dict.c @@ -147,8 +147,8 @@ long reverse (long N) { #endif /* data files */ -#define DICT_INDEX ROCKBOX_DIR "/rocks/apps/dict.index" -#define DICT_DESC ROCKBOX_DIR "/rocks/apps/dict.desc" +#define DICT_INDEX PLUGIN_APPS_DIR "/dict.index" +#define DICT_DESC PLUGIN_APPS_DIR "/dict.desc" /* the main plugin function */ enum plugin_status plugin_start(const void* parameter) diff --git a/apps/plugins/keybox.c b/apps/plugins/keybox.c index ddff1e9..5d625a3 100644 --- a/apps/plugins/keybox.c +++ b/apps/plugins/keybox.c @@ -22,7 +22,7 @@ #include "lib/md5.h" PLUGIN_HEADER -#define KEYBOX_FILE PLUGIN_DIR "/apps/keybox.dat" +#define KEYBOX_FILE PLUGIN_APPS_DIR "/keybox.dat" #define BLOCK_SIZE 8 #define MAX_ENTRIES 12*BLOCK_SIZE /* keep this a multiple of BLOCK_SIZE */ #define FIELD_LEN 32 /* should be enough for anyone ;) */ diff --git a/apps/plugins/pegbox.c b/apps/plugins/pegbox.c index 75a37e1..23470d4 100644 --- a/apps/plugins/pegbox.c +++ b/apps/plugins/pegbox.c @@ -39,8 +39,8 @@ PLUGIN_HEADER #define PB_USB 2 #define PB_QUIT 1 -#define DATA_FILE PLUGIN_DIR "/games/pegbox.data" -#define SAVE_FILE PLUGIN_DIR "/games/pegbox.save" +#define DATA_FILE PLUGIN_GAMES_DIR "/pegbox.data" +#define SAVE_FILE PLUGIN_GAMES_DIR "/pegbox.save" #define ROWS 8 /* Number of rows on each board */ #define COLS 12 /* Number of columns on each board */ diff --git a/apps/plugins/stopwatch.c b/apps/plugins/stopwatch.c index 0221e03..4bacf41 100644 --- a/apps/plugins/stopwatch.c +++ b/apps/plugins/stopwatch.c @@ -32,7 +32,7 @@ PLUGIN_HEADER #define LAP_Y TIMER_Y+1 #define MAX_LAPS 64 -#define STOPWATCH_FILE ROCKBOX_DIR "/apps/stopwatch.dat" +#define STOPWATCH_FILE PLUGIN_APPS_DIR "/stopwatch.dat" /* variable button definitions */ #if CONFIG_KEYPAD == RECORDER_PAD |