diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2011-10-15 19:35:02 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2011-10-15 19:35:02 +0000 |
| commit | 0942e2a0f71d809c1d7f2606cbddfa1d4beacb87 (patch) | |
| tree | ce2fbdea468cb8223598c546fee765a10660a0b0 /apps/recorder/recording.c | |
| parent | f301ac05f9dd6ace2355fa822bd61d454c2c4f28 (diff) | |
| download | rockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.zip rockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.tar.gz rockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.tar.bz2 rockbox-0942e2a0f71d809c1d7f2606cbddfa1d4beacb87.tar.xz | |
Changed the FOR_NB_SCREENS macro to always be a for loop that declares its own loop variable. This removes the need to declare this variable in the outer scope.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30756 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/recording.c')
| -rw-r--r-- | apps/recorder/recording.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index d706899..15b6285 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -184,7 +184,7 @@ static bool remote_display_on = true; #endif /* as we have the ability to disable the remote, we need an alternative loop */ -#define FOR_NB_ACTIVE_SCREENS(i) for(i = 0; i < screen_update; i++) +#define FOR_NB_ACTIVE_SCREENS(i) for(int i = 0; i < screen_update; i++) static bool update_list = false; /* (GIU) list needs updating */ @@ -1042,7 +1042,6 @@ bool recording_screen(bool no_source) int peak_l, peak_r; int balance = 0; #endif - int i; int pm_x[NB_SCREENS]; /* peakmeter (and trigger bar) x pos */ int pm_y[NB_SCREENS]; /* peakmeter y pos */ int pm_h[NB_SCREENS]; /* peakmeter height */ @@ -2009,7 +2008,7 @@ static bool f2_rec_screen(void) bool exit = false; bool used = false; - int w, h, i; + int w, h; char buf[32]; int button; struct audio_recording_options rec_options; @@ -2140,7 +2139,7 @@ static bool f3_rec_screen(void) { bool exit = false; bool used = false; - int w, h, i; + int w, h; int button; const char *src_str[] = { |