summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index f5609fe75c..c2f5c925fb 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -25,6 +25,8 @@
25 25
26#define ROCKBOX_DIR "/.rockbox" 26#define ROCKBOX_DIR "/.rockbox"
27 27
28#define MAX_FILENAME 20
29
28/* data structures */ 30/* data structures */
29 31
30#define RESUME_OFF 0 32#define RESUME_OFF 0
@@ -75,6 +77,9 @@ struct user_settings
75 int resume_seed; /* random seed for playlist shuffle */ 77 int resume_seed; /* random seed for playlist shuffle */
76 int resume_first_index; /* first index of playlist */ 78 int resume_first_index; /* first index of playlist */
77 unsigned char resume_file[MAX_PATH+1]; /* playlist name (or dir) */ 79 unsigned char resume_file[MAX_PATH+1]; /* playlist name (or dir) */
80 unsigned char font_file[MAX_FILENAME+1]; /* last font */
81 unsigned char wps_file[MAX_FILENAME+1]; /* last wps */
82 unsigned char lang_file[MAX_FILENAME+1]; /* last language */
78 83
79 /* misc options */ 84 /* misc options */
80 85