diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-27 09:24:02 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-10-27 09:24:02 +0000 |
| commit | fb60a291bedfab4f1f245e6eae1beccbf837d3cd (patch) | |
| tree | 4cae027557f2973fbe2f811a6a6dabb3ede8d4e4 /apps/settings.c | |
| parent | b91b6dc135126488dd0a4e3e0f7538d690e781b0 (diff) | |
| download | rockbox-fb60a291bedfab4f1f245e6eae1beccbf837d3cd.zip rockbox-fb60a291bedfab4f1f245e6eae1beccbf837d3cd.tar.gz rockbox-fb60a291bedfab4f1f245e6eae1beccbf837d3cd.tar.bz2 rockbox-fb60a291bedfab4f1f245e6eae1beccbf837d3cd.tar.xz | |
Added 74 and 80 minute recording time splits, for convenient CD creation, fixes feature request #1052616
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5370 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index 4bb9adb..2ee4126 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -307,8 +307,8 @@ static const struct bit_entry hd_bits[] = #if CONFIG_HWCODEC == MAS3587F /* recording */ {1, S_O(rec_editable), false, "editable recordings", off_on }, - {4, S_O(rec_timesplit), 0, "rec timesplit", /* 0...13 */ - "off,00:05,00:10,00:15,00:30,01:00,02:00,04:00,06:00,08:00,10:00,12:00,18:00,24:00" }, + {4, S_O(rec_timesplit), 0, "rec timesplit", /* 0...15 */ + "off,00:05,00:10,00:15,00:30,01:00,01:14,01:20,02:00,04:00,06:00,08:00,10:00,12:00,18:00,24:00" }, {1, S_O(rec_channels), 0, "rec channels", "stereo,mono" }, {4, S_O(rec_mic_gain), 8, "rec mic gain", NULL }, {3, S_O(rec_quality), 5, "rec quality", NULL }, @@ -1532,6 +1532,8 @@ static const unsigned long rec_timer_seconds[] = 15*60, /* 00:15 */ 30*60, /* 00:30 */ 60*60, /* 01:00 */ + 74*60, /* 74:00 */ + 80*60, /* 80:00 */ 2*60*60, /* 02:00 */ 4*60*60, /* 04:00 */ 6*60*60, /* 06:00 */ |