summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Nielsen Feltzing <linus@haxx.se>2005-09-06 21:01:35 +0000
committerLinus Nielsen Feltzing <linus@haxx.se>2005-09-06 21:01:35 +0000
commit4cd06c41f62c217681ec91557e89dc4461bab6d3 (patch)
treec4a5303ae48e60fc9556861cb929e9f0928dfc9b
parentfb1850b755708e98f63583cc1571036b2fc6bbb8 (diff)
downloadrockbox-4cd06c41f62c217681ec91557e89dc4461bab6d3.tar.gz
rockbox-4cd06c41f62c217681ec91557e89dc4461bab6d3.zip
The status bas wasn't correctly redrawn in the FM radio screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7484 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r--apps/recorder/radio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index ba8fc7e7c2..b9de384707 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -567,11 +567,11 @@ bool radio_screen(void)
567 buttonbar_draw(); 567 buttonbar_draw();
568#endif 568#endif
569 lcd_update(); 569 lcd_update();
570
571 update_screen = false;
572 } 570 }
573 /* Only force the redraw if update_screen is true */ 571 /* Only force the redraw if update_screen is true */
574 status_draw(update_screen); 572 status_draw(update_screen);
573
574 update_screen = false;
575 } 575 }
576 576
577 if(audio_status() & AUDIO_STATUS_ERROR) 577 if(audio_status() & AUDIO_STATUS_ERROR)