diff options
| author | Thomas Martitz <kugel@rockbox.org> | 2009-10-19 16:12:42 +0000 |
|---|---|---|
| committer | Thomas Martitz <kugel@rockbox.org> | 2009-10-19 16:12:42 +0000 |
| commit | ee6557eeda8aeefa6db169f633ecdb7755dba247 (patch) | |
| tree | 42111f206cda9390ed5868a9b9ebc0e4ef450825 /apps/settings.c | |
| parent | de7f24104650a03590d009be28283e9b361d6652 (diff) | |
| download | rockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.zip rockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.tar.gz rockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.tar.bz2 rockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.tar.xz | |
Remove a few superfluous calls and use the correct symbol.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@23262 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/settings.c')
| -rw-r--r-- | apps/settings.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c index f0d3d31..7a36a0e 100644 --- a/apps/settings.c +++ b/apps/settings.c @@ -745,7 +745,7 @@ void settings_apply_skins(void) if ( global_settings.sbs_file[0] && global_settings.sbs_file[0] != 0xff ) { - snprintf(buf, sizeof buf, WPS_DIR "/%s.sbs", + snprintf(buf, sizeof buf, SBS_DIR "/%s.sbs", global_settings.sbs_file); sb_skin_data_load(SCREEN_MAIN, buf, true); } @@ -768,7 +768,7 @@ void settings_apply_skins(void) #if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1) if ( global_settings.rsbs_file[0] && global_settings.rsbs_file[0] != 0xff ) { - snprintf(buf, sizeof buf, WPS_DIR "/%s.rsbs", + snprintf(buf, sizeof buf, SBS_DIR "/%s.rsbs", global_settings.rsbs_file); sb_skin_data_load(SCREEN_REMOTE, buf, true); } |