diff options
| author | Stéphane Doyon <s.doyon@videotron.ca> | 2008-05-04 14:23:02 +0000 |
|---|---|---|
| committer | Stéphane Doyon <s.doyon@videotron.ca> | 2008-05-04 14:23:02 +0000 |
| commit | 5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410 (patch) | |
| tree | 81def4dd25719781071954dc63b09096a1108d4a | |
| parent | ab0f7e17ef225f2db908276f903d1354b7777618 (diff) | |
| download | rockbox-5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410.zip rockbox-5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410.tar.gz rockbox-5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410.tar.bz2 rockbox-5f7432fdff5d798a3aa6fbc4fcdc3f2a9cdf4410.tar.xz | |
Move study mode settings from r17355 to end of settings struct to
avoid having to bump plugin API version. Thx jdgordon.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17356 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h index b21b404..4ade11b 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -437,8 +437,6 @@ struct user_settings bool play_selected; /* Plays selected file even in shuffle mode */ int ff_rewind_min_step; /* FF/Rewind minimum step size */ int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */ - bool study_mode; /* study mode enabled */ - int study_hop_step; /* hop step in study mode, in seconds */ #ifndef HAVE_FLASH_STORAGE int disk_spindown; /* time until disk spindown, in seconds (0=off) */ @@ -731,6 +729,8 @@ struct user_settings int keyclick_repeats; /* keyclick on repeats */ #endif unsigned char playlist_catalog_dir[MAX_FILENAME+1]; + bool study_mode; /* study mode enabled */ + int study_hop_step; /* hop step in study mode, in seconds */ }; /** global variables **/ |