diff options
| author | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-12-07 00:31:31 +0000 |
|---|---|---|
| committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2007-12-07 00:31:31 +0000 |
| commit | 05007e1a79fa9d9bb5985e0f6195871ea5ea71a6 (patch) | |
| tree | 78f3653325030e762910f33255618edc61afbf8f | |
| parent | 327d78eb6e4ad5e380de021d64a02c31e95384a8 (diff) | |
| download | rockbox-05007e1a79fa9d9bb5985e0f6195871ea5ea71a6.zip rockbox-05007e1a79fa9d9bb5985e0f6195871ea5ea71a6.tar.gz rockbox-05007e1a79fa9d9bb5985e0f6195871ea5ea71a6.tar.bz2 rockbox-05007e1a79fa9d9bb5985e0f6195871ea5ea71a6.tar.xz | |
More code police
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15890 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/recorder/recording.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 7b81b3d..7824d0a 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -1096,7 +1096,7 @@ bool recording_screen(bool no_source) rec_command(RECORDING_CMD_START); last_seconds = 0; if (global_settings.talk_menu) - { + { /* no voice possible here, but a beep */ audio_beep(HZ/2); /* longer beep on start */ } @@ -1454,7 +1454,7 @@ bool recording_screen(bool no_source) num_recorded_bytes = audio_num_recorded_bytes(); for(i = 0; i < screen_update; i++) - screens[i].clear_display(); + screens[i].clear_display(); style = base_style; @@ -1671,13 +1671,13 @@ bool recording_screen(bool no_source) if(global_settings.cursor_style && ((1==cursor)||(3==cursor))) { for(i = 0; i < screen_update; i++) - screens[i].puts_style_offset(0, filename_offset[i] + + screens[i].puts_style_offset(0, filename_offset[i] + PM_HEIGHT + 4, buf, style,0); } else { for(i = 0; i < screen_update; i++) - screens[i].puts(0, filename_offset[i] + + screens[i].puts(0, filename_offset[i] + PM_HEIGHT + 4, buf); } } @@ -1994,7 +1994,7 @@ static bool f2_rec_screen(void) FOR_NB_SCREENS(i) { screens[i].putsxy(0, LCD_HEIGHT/2-h, buf); - screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastBackward], + screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastBackward], LCD_WIDTH/2 - 16, LCD_HEIGHT/2 - 4, 7, 8); } @@ -2123,7 +2123,7 @@ static bool f3_rec_screen(void) /* Recording source */ screens[i].putsxy(0, LCD_HEIGHT/2 - h*2, str(LANG_SYSFONT_RECORDING_SOURCE)); - + screens[i].getstringsize(ptr, &w, &h); screens[i].putsxy(0, LCD_HEIGHT/2-h, ptr); screens[i].mono_bitmap(bitmap_icons_7x8[Icon_FastBackward], |