diff options
author | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-07 14:17:13 +0000 |
---|---|---|
committer | Jonathan Gordon <rockbox@jdgordon.info> | 2007-02-07 14:17:13 +0000 |
commit | 3e16c9eb25d9396370a1fd52629793faae7961a0 (patch) | |
tree | 830fc03cdd668d4cba827d57193fa56617b50d5f | |
parent | 48289a51adb6ac7c28670fbd3e87a12ff9251e9c (diff) |
if you reset your settings, you wont be in the rec screen anymore!
(hopefully fix the statusbar problem for good)
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12225 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/settings.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/settings.c b/apps/settings.c index f4966e952e..6af8a872b4 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -916,6 +916,7 @@ void settings_reset(void) { #if defined (HAVE_RECORDING) && CONFIG_CODEC == SWCODEC enc_global_settings_reset(); #endif + global_status.in_recording_screen = false; } /** Changing setting values **/ |