Kill the errors for now. Would like to know why resetting in_recording_screen from outside the function should ever be needed. If you're not in the recording screen any more, the function should have exited and reset in_recording_screen to false. If it hasn't actually been reset in that case, the function hasn't return for some reason.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12226 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
3e16c9eb25
commit
092d355c34
1 changed files with 2 additions and 0 deletions
|
@ -916,7 +916,9 @@ void settings_reset(void) {
|
|||
#if defined (HAVE_RECORDING) && CONFIG_CODEC == SWCODEC
|
||||
enc_global_settings_reset();
|
||||
#endif
|
||||
#ifdef HAVE_RECORDING
|
||||
global_status.in_recording_screen = false;
|
||||
#endif
|
||||
}
|
||||
|
||||
/** Changing setting values **/
|
||||
|
|
Loading…
Reference in a new issue