diff options
author | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-08-11 18:32:10 +0000 |
---|---|---|
committer | Peter D'Hoye <peter.dhoye@gmail.com> | 2008-08-11 18:32:10 +0000 |
commit | 76b6262df8aede4c7e9baad05640520b238e0aa0 (patch) | |
tree | 148739c2a772feceffde5a9872ed7f92850bdb7a | |
parent | 73a017c2097019f060139c1fb1157e51fab41f8e (diff) |
Adapt clip counter to compact view of recording screen
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18246 a1c6a512-1295-4272-9138-f99709370657
-rw-r--r-- | apps/recorder/recording.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c index 2f917f9433..adcad9b8dd 100644 --- a/apps/recorder/recording.c +++ b/apps/recorder/recording.c @@ -1727,8 +1727,9 @@ bool recording_screen(bool no_source) snprintf(clpstr, 32, "%4d", pm_get_clipcount()); FOR_NB_ACTIVE_SCREENS(i) { - screens[i].puts(0, 2,str(LANG_PM_CLIPCOUNT)); - screens[i].puts(0, 3, clpstr); + if(!compact_view[i]) + screens[i].puts(0, 2,str(LANG_PM_CLIPCOUNT)); + screens[i].puts(0, compact_view[i] ? 2 : 3, clpstr); } } |