mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-11-09 13:12:37 -05:00
Fix 2 'set but not used' warnings.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@29922 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
5fd9471c15
commit
2e3162f039
2 changed files with 7 additions and 6 deletions
|
|
@ -392,8 +392,8 @@ void radio_screen(void)
|
|||
#endif
|
||||
#if CONFIG_CODEC != SWCODEC
|
||||
int timeout = current_tick + HZ/10;
|
||||
unsigned int last_seconds = 0;
|
||||
#if !defined(SIMULATOR)
|
||||
unsigned int last_seconds = 0;
|
||||
unsigned int seconds = 0;
|
||||
struct audio_recording_options rec_options;
|
||||
#endif /* SIMULATOR */
|
||||
|
|
@ -547,8 +547,10 @@ void radio_screen(void)
|
|||
rec_command(RECORDING_CMD_START);
|
||||
update_type = SKIN_REFRESH_ALL;
|
||||
}
|
||||
#endif /* SIMULATOR */
|
||||
#if CONFIG_CODEC != SWCODEC
|
||||
last_seconds = 0;
|
||||
#endif
|
||||
#endif /* SIMULATOR */
|
||||
break;
|
||||
#endif /* #ifdef FM_RECORD */
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue