summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2003-02-27 14:22:30 +0000
committerBjörn Stenberg <bjorn@haxx.se>2003-02-27 14:22:30 +0000
commitb1079200d34b197a9ea0ec649168b0a307ee9517 (patch)
treef4132e5965de2c6cf997a653af48f615b30c7a50 /apps/settings.h
parent8856b8651980e0e2df2dbb94726cbc9bb4fc085b (diff)
downloadrockbox-b1079200d34b197a9ea0ec649168b0a307ee9517.tar.gz
rockbox-b1079200d34b197a9ea0ec649168b0a307ee9517.zip
New option: Invert display. Patch by Mark Hillebrand.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3355 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 6f127e05dc..6c383f9976 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -77,7 +77,8 @@ struct user_settings
77 77
78 /* device settings */ 78 /* device settings */
79 79
80 int contrast; /* lcd contrast: 0-100 0=low 100=high */ 80 int contrast; /* lcd contrast: 0-63 0=low 63=high */
81 bool invert; /* invert display */
81 int poweroff; /* power off timer */ 82 int poweroff; /* power off timer */
82 int backlight_timeout; /* backlight off timeout: 0-18 0=never, 83 int backlight_timeout; /* backlight off timeout: 0-18 0=never,
83 1=always, 84 1=always,
@@ -189,6 +190,7 @@ extern char rockboxdir[];
189#define DEFAULT_CONTRAST_SETTING 38 190#define DEFAULT_CONTRAST_SETTING 38
190#endif 191#endif
191#define MIN_CONTRAST_SETTING 5 192#define MIN_CONTRAST_SETTING 5
193#define DEFAULT_INVERT_SETTING false
192#define DEFAULT_POWEROFF_SETTING 0 194#define DEFAULT_POWEROFF_SETTING 0
193#define DEFAULT_BACKLIGHT_TIMEOUT_SETTING 5 195#define DEFAULT_BACKLIGHT_TIMEOUT_SETTING 5
194#define DEFAULT_BACKLIGHT_ON_WHEN_CHARGING_SETTING 0 196#define DEFAULT_BACKLIGHT_ON_WHEN_CHARGING_SETTING 0