diff options
author | Jens Arnold <amiconn@rockbox.org> | 2004-12-26 18:36:48 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2004-12-26 18:36:48 +0000 |
commit | ae45d970d874217b779071b414dcd5edbf5647da (patch) | |
tree | b3e4d366ccac05af91b9b857000ae16141c6007c /apps | |
parent | b8c9a0caa3e0ae1aad8abe3ec98b7c0a6d967be7 (diff) | |
download | rockbox-ae45d970d874217b779071b414dcd5edbf5647da.tar.gz rockbox-ae45d970d874217b779071b414dcd5edbf5647da.zip |
Radio screen: status bar wasn't updated when prerecording buffer was filled and no button pressed.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5513 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r-- | apps/recorder/radio.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c index 44a4cdefce..f78c4e6712 100644 --- a/apps/recorder/radio.c +++ b/apps/recorder/radio.c @@ -504,8 +504,6 @@ bool radio_screen(void) } } - /* Only force the redraw if update_screen is true */ - status_draw(update_screen); #if CONFIG_KEYPAD == RECORDER_PAD buttonbar_draw(); #endif @@ -513,6 +511,8 @@ bool radio_screen(void) update_screen = false; } + /* Only force the redraw if update_screen is true */ + status_draw(update_screen); } if(mpeg_status() & MPEG_STATUS_ERROR) |