summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apps/settings.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.h b/apps/settings.h
index b21b404d9c..4ade11b11d 100644
--- a/apps/settings.h
+++ b/apps/settings.h
@@ -437,8 +437,6 @@ struct user_settings
437 bool play_selected; /* Plays selected file even in shuffle mode */ 437 bool play_selected; /* Plays selected file even in shuffle mode */
438 int ff_rewind_min_step; /* FF/Rewind minimum step size */ 438 int ff_rewind_min_step; /* FF/Rewind minimum step size */
439 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */ 439 int ff_rewind_accel; /* FF/Rewind acceleration (in seconds per doubling) */
440 bool study_mode; /* study mode enabled */
441 int study_hop_step; /* hop step in study mode, in seconds */
442 440
443#ifndef HAVE_FLASH_STORAGE 441#ifndef HAVE_FLASH_STORAGE
444 int disk_spindown; /* time until disk spindown, in seconds (0=off) */ 442 int disk_spindown; /* time until disk spindown, in seconds (0=off) */
@@ -731,6 +729,8 @@ struct user_settings
731 int keyclick_repeats; /* keyclick on repeats */ 729 int keyclick_repeats; /* keyclick on repeats */
732#endif 730#endif
733 unsigned char playlist_catalog_dir[MAX_FILENAME+1]; 731 unsigned char playlist_catalog_dir[MAX_FILENAME+1];
732 bool study_mode; /* study mode enabled */
733 int study_hop_step; /* hop step in study mode, in seconds */
734}; 734};
735 735
736/** global variables **/ 736/** global variables **/