summaryrefslogtreecommitdiff
path: root/apps/settings.h
diff options
context:
space:
mode:
authorMichael Sevakis <jethead71@rockbox.org>2007-02-07 04:24:21 +0000
committerMichael Sevakis <jethead71@rockbox.org>2007-02-07 04:24:21 +0000
commiteed62f1657f4f2b08571f0bd2b1827f3a71dac87 (patch)
tree1023d721c59e29150f445bbba25a0e11bed4c1ae /apps/settings.h
parentff3bb3aa18e71860d644a50632088ec282968de4 (diff)
downloadrockbox-eed62f1657f4f2b08571f0bd2b1827f3a71dac87.tar.gz
rockbox-eed62f1657f4f2b08571f0bd2b1827f3a71dac87.zip
Change the radio screen and recording screen to use the global_status structure for state. I guess global_status had been added already and I missed it. :D
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12222 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
-rw-r--r--apps/settings.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/apps/settings.h b/apps/settings.h
index 7321d39cf5..379084b885 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -263,8 +263,17 @@ struct system_status
263#ifdef CONFIG_TUNER 263#ifdef CONFIG_TUNER
264 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units, 264 int last_frequency; /* Last frequency for resuming, in FREQ_STEP units,
265 relative to MIN_FREQ */ 265 relative to MIN_FREQ */
266 bool in_radio_screen; /* Currently in radio screen?
267 Set by radio_screen. */
268 int radio_status; /* Current radio status (off, playing, paused)
269 Set by radio control functions. */
270#endif
271#ifdef HAVE_RECORDING
272 bool in_recording_screen; /* Currently in recording screen?
273 Set by recording_screen. */
266#endif 274#endif
267}; 275};
276
268struct user_settings 277struct user_settings
269{ 278{
270 /* audio settings */ 279 /* audio settings */