summaryrefslogtreecommitdiff
path: root/apps/gui/gwps-common.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-01-24 02:19:22 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-01-24 02:19:22 +0000
commit228d62dd18906eaef814ec63cf888b30a94cd1c8 (patch)
treea15e27e0e52222e4514e2b163e726869b33b5397 /apps/gui/gwps-common.c
parentcdcffd988372606abea31fad4a815f0b4968b21c (diff)
downloadrockbox-228d62dd18906eaef814ec63cf888b30a94cd1c8.tar.gz
rockbox-228d62dd18906eaef814ec63cf888b30a94cd1c8.zip
Split the system status variables out of global_settings and put them into a new struct global_status. Use status_save() if these need
saving. Added car_adapter_mode to the nvram settings, so nvram settings will be reset. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12101 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui/gwps-common.c')
-rw-r--r--apps/gui/gwps-common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/gui/gwps-common.c b/apps/gui/gwps-common.c
index f2aa497703..41edc0002b 100644
--- a/apps/gui/gwps-common.c
+++ b/apps/gui/gwps-common.c
@@ -2483,7 +2483,7 @@ bool gui_wps_display(void)
2483 int i; 2483 int i;
2484 if (!wps_state.id3 && !(audio_status() & AUDIO_STATUS_PLAY)) 2484 if (!wps_state.id3 && !(audio_status() & AUDIO_STATUS_PLAY))
2485 { 2485 {
2486 global_settings.resume_index = -1; 2486 global_status.resume_index = -1;
2487#ifdef HAVE_LCD_CHARCELLS 2487#ifdef HAVE_LCD_CHARCELLS
2488 gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER)); 2488 gui_syncsplash(HZ, true, str(LANG_END_PLAYLIST_PLAYER));
2489#else 2489#else