summaryrefslogtreecommitdiff
path: root/apps/recorder/radio.c
diff options
context:
space:
mode:
authorJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
committerJonathan Gordon <rockbox@jdgordon.info>2007-07-22 06:05:53 +0000
commitf7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e (patch)
treea24862b74e4a16e971349a4f4b2975b93e45d5b4 /apps/recorder/radio.c
parent9d756e2760a0926aa416b22e276c4a5b2685e84e (diff)
downloadrockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.tar.gz
rockbox-f7675a244b0d1d52bfdf5a1ee0051b46e73f9f2e.zip
remove the need for action_signalscreenchange().
Fixes problems with targets where the ACTION_STD_CANCEL event is a combo git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13956 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/radio.c')
-rw-r--r--apps/recorder/radio.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/apps/recorder/radio.c b/apps/recorder/radio.c
index eb457fc2e3..24996bb92b 100644
--- a/apps/recorder/radio.c
+++ b/apps/recorder/radio.c
@@ -1260,7 +1260,6 @@ static int handle_radio_presets(void)
1260 gui_synclist_set_nb_items(&lists, num_presets); 1260 gui_synclist_set_nb_items(&lists, num_presets);
1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset); 1261 gui_synclist_select_item(&lists, curr_preset<0 ? 0 : curr_preset);
1262 1262
1263 action_signalscreenchange();
1264 while (result == 0) 1263 while (result == 0)
1265 { 1264 {
1266 gui_synclist_draw(&lists); 1265 gui_synclist_draw(&lists);
@@ -1293,7 +1292,6 @@ static int handle_radio_presets(void)
1293 result = 2; 1292 result = 2;
1294 } 1293 }
1295 } 1294 }
1296 action_signalscreenchange();
1297 return result - 1; 1295 return result - 1;
1298} 1296}
1299 1297
@@ -1424,9 +1422,6 @@ static int fm_recording_screen(void)
1424 int rec_source = global_settings.rec_source; 1422 int rec_source = global_settings.rec_source;
1425 global_settings.rec_source = AUDIO_SRC_FMRADIO; 1423 global_settings.rec_source = AUDIO_SRC_FMRADIO;
1426 1424
1427 /* clearing queue seems to cure a spontaneous abort during record */
1428 action_signalscreenchange();
1429
1430 ret = recording_screen(true); 1425 ret = recording_screen(true);
1431 1426
1432 /* safe to reset as changing sources is prohibited here */ 1427 /* safe to reset as changing sources is prohibited here */