diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-06 07:03:14 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2008-03-06 07:03:14 +0000 |
| commit | e1ba7f76efce1c9eabd33577ee4dc4efaa218f70 (patch) | |
| tree | af35f13d4d9554a6f017811763172810337acec0 /apps/settings.h | |
| parent | 012833ce1561d9a9d864f608a63a9189ec29b023 (diff) | |
| download | rockbox-e1ba7f76efce1c9eabd33577ee4dc4efaa218f70.zip rockbox-e1ba7f76efce1c9eabd33577ee4dc4efaa218f70.tar.gz rockbox-e1ba7f76efce1c9eabd33577ee4dc4efaa218f70.tar.bz2 rockbox-e1ba7f76efce1c9eabd33577ee4dc4efaa218f70.tar.xz | |
there is no need to load the filename settings unless reading from a .cfg, so stop them being read every time settings_apply() is called
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@16535 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.h')
| -rw-r--r-- | apps/settings.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/settings.h b/apps/settings.h index 06c9c8b..1a2c2ee 100644 --- a/apps/settings.h +++ b/apps/settings.h @@ -217,7 +217,7 @@ bool settings_save_config(int options); void settings_reset(void); void sound_settings_apply(void); -void settings_apply(void); +void settings_apply(bool read_disk); void settings_apply_pm_range(void); void settings_display(void); |