summaryrefslogtreecommitdiff
path: root/apps/recorder/recording.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2005-09-11 17:57:31 +0000
committerJens Arnold <amiconn@rockbox.org>2005-09-11 17:57:31 +0000
commit2c0d04cc943f7ef2dd67c49ea419e7db378c01d0 (patch)
tree4020b464b3992035bbc5cbfe61b199432990abb6 /apps/recorder/recording.c
parent61a2550f3f4948a8d732a41e17a14365e5146eb6 (diff)
downloadrockbox-2c0d04cc943f7ef2dd67c49ea419e7db378c01d0.tar.gz
rockbox-2c0d04cc943f7ef2dd67c49ea419e7db378c01d0.zip
Fixed comment.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@7508 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/recorder/recording.c')
-rw-r--r--apps/recorder/recording.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/recorder/recording.c b/apps/recorder/recording.c
index 007ac8dc9d..84f99653da 100644
--- a/apps/recorder/recording.c
+++ b/apps/recorder/recording.c
@@ -692,9 +692,9 @@ bool recording_screen(void)
692 } 692 }
693 lcd_puts(0, 1, buf); 693 lcd_puts(0, 1, buf);
694 694
695 /* We will do file splitting regardless, since the OFF 695 /* We will do file splitting regardless, either at the end of
696 setting really means 24 hours. This is to make sure 696 a split interval, or when the filesize approaches the 2GB
697 that the recorded files don't get too big. */ 697 FAT file size (compatibility) limit. */
698 if (audio_stat && 698 if (audio_stat &&
699 ((global_settings.rec_timesplit && (seconds >= dseconds)) 699 ((global_settings.rec_timesplit && (seconds >= dseconds))
700 || (num_recorded_bytes >= MAX_FILE_SIZE))) 700 || (num_recorded_bytes >= MAX_FILE_SIZE)))