summaryrefslogtreecommitdiff
path: root/apps/recorder
diff options
context:
space:
mode:
Diffstat (limited to 'apps/recorder')
-rw-r--r--apps/recorder/recording.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 0e78b2c66b..8fb31d8edf 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -336,6 +336,8 @@ bool recording_screen(void)
336 336
337 if(TIME_AFTER(current_tick, timeout)) 337 if(TIME_AFTER(current_tick, timeout))
338 { 338 {
339 lcd_setfont(FONT_SYSFIXED);
340
339 timeout = current_tick + HZ/10; 341 timeout = current_tick + HZ/10;
340 342
341 seconds = mpeg_recorded_time() / HZ; 343 seconds = mpeg_recorded_time() / HZ;
@@ -396,8 +398,6 @@ bool recording_screen(void)
396 } 398 }
397 } 399 }
398 400
399 status_draw();
400
401 if(global_settings.rec_source != SOURCE_SPDIF) 401 if(global_settings.rec_source != SOURCE_SPDIF)
402 put_cursorxy(0, 3 + cursor, true); 402 put_cursorxy(0, 3 + cursor, true);
403 403
@@ -407,6 +407,9 @@ bool recording_screen(void)
407 str(LANG_CHANNEL_MONO):str(LANG_CHANNEL_STEREO), 407 str(LANG_CHANNEL_MONO):str(LANG_CHANNEL_STEREO),
408 global_settings.rec_quality); 408 global_settings.rec_quality);
409 lcd_puts(0, 6, buf); 409 lcd_puts(0, 6, buf);
410
411 status_draw();
412
410 lcd_update(); 413 lcd_update();
411 } 414 }
412 else 415 else