summaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2002-07-24 16:58:31 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2002-07-24 16:58:31 +0000
commit1b210531e1321cb14c4dbe3953055a3b313603ab (patch)
tree242578ae0b07b242915a39390ff6179101772366 /apps
parentebfff5a43d9f89d792e6b8f41af248e87a1ac8b4 (diff)
downloadrockbox-1b210531e1321cb14c4dbe3953055a3b313603ab.tar.gz
rockbox-1b210531e1321cb14c4dbe3953055a3b313603ab.zip
Removed the no longer needed hold setting
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@1437 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/settings.c1
-rw-r--r--apps/settings.h3
2 files changed, 0 insertions, 4 deletions
diff --git a/apps/settings.c b/apps/settings.c
index 658b71d69c..84ac584951 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -310,7 +310,6 @@ void settings_reset(void) {
310 global_settings.total_boots = 0; 310 global_settings.total_boots = 0;
311 global_settings.total_uptime = 0; 311 global_settings.total_uptime = 0;
312 global_settings.scroll_speed = 8; 312 global_settings.scroll_speed = 8;
313 global_settings.hold = false;
314} 313}
315 314
316 315
diff --git a/apps/settings.h b/apps/settings.h
index 7f2eccc0e9..3921fb1f52 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -64,9 +64,6 @@ struct user_settings
64 /* geeky persistent statistics */ 64 /* geeky persistent statistics */
65 unsigned short total_boots; /* how many times the device has been booted */ 65 unsigned short total_boots; /* how many times the device has been booted */
66 unsigned int total_uptime; /* total uptime since rockbox was first booted */ 66 unsigned int total_uptime; /* total uptime since rockbox was first booted */
67
68 /* Hold Mode */
69 bool hold;
70}; 67};
71 68
72/* prototypes */ 69/* prototypes */