diff options
| author | Eric Linenberg <elinenbe@umich.edu> | 2002-08-28 19:34:07 +0000 |
|---|---|---|
| committer | Eric Linenberg <elinenbe@umich.edu> | 2002-08-28 19:34:07 +0000 |
| commit | 65240761fbcee1274836b74295c10247ca3d8ceb (patch) | |
| tree | 34e5d0021c17042f151e75acd99761ed79ede73a /apps/settings.c | |
| parent | 7d808a83e41156c99081d8df54fd6c2067bec8d0 (diff) | |
| download | rockbox-65240761fbcee1274836b74295c10247ca3d8ceb.zip rockbox-65240761fbcee1274836b74295c10247ca3d8ceb.tar.gz rockbox-65240761fbcee1274836b74295c10247ca3d8ceb.tar.bz2 rockbox-65240761fbcee1274836b74295c10247ca3d8ceb.tar.xz | |
Nate Nystrom's ff/rw acceleration patch
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@2044 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/apps/settings.c b/apps/settings.c index ef74a5b..bb64886 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -65,10 +65,12 @@ offset abs 0x0d 0x21 <resume settings byte> 0x0e 0x22 <shuffle,mp3filter,sort_case,discharge,statusbar,show_hidden> 0x0f 0x23 <scroll speed & WPS display byte> -0x10 0x24 <playlist options byte> +0x10 0x24 <ff/rewind step size> 0x11 0x25 <AVC byte> 0x12 0x26 <(int) Resume playlist index, or -1 if no playlist resume> 0x16 0x2a <(int) Byte offset into resume file> +0x1a 0x2e <time until disk spindown> +0x1b 0x2f <ff/rewind acceleration rate> <all unused space filled with 0xff> @@ -269,6 +271,7 @@ int settings_save( void ) config_block[0x10] = (unsigned char)global_settings.ff_rewind; config_block[0x11] = (unsigned char)global_settings.avc; config_block[0x1a] = (unsigned char)global_settings.disk_spindown; + config_block[0x1b] = (unsigned char)global_settings.ff_rewind_accel; memcpy(&config_block[0x12], &global_settings.resume_index, 4); memcpy(&config_block[0x16], &global_settings.resume_offset, 4); @@ -373,6 +376,9 @@ void settings_load(void) if (config_block[0x1a] != 0xFF) global_settings.disk_spindown = config_block[0x1a]; + if (config_block[0x1b] != 0xFF) + global_settings.ff_rewind_accel = config_block[0x1b]; + memcpy(&global_settings.resume_seed, &config_block[0xF8], 4); if (config_block[0x24] != 0xFF) @@ -419,6 +425,7 @@ void settings_reset(void) { global_settings.scroll_speed = 8; global_settings.show_hidden_files = false; global_settings.ff_rewind = DEFAULT_FF_REWIND_SETTING; + global_settings.ff_rewind_accel = DEFAULT_FF_REWIND_ACCEL_SETTING; global_settings.resume_index = -1; global_settings.resume_offset = -1; global_settings.disk_spindown = 5; |