summaryrefslogtreecommitdiff
path: root/apps/settings.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-10-19 16:12:42 +0000
committerThomas Martitz <kugel@rockbox.org>2009-10-19 16:12:42 +0000
commitee6557eeda8aeefa6db169f633ecdb7755dba247 (patch)
tree42111f206cda9390ed5868a9b9ebc0e4ef450825 /apps/settings.c
parentde7f24104650a03590d009be28283e9b361d6652 (diff)
downloadrockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.tar.gz
rockbox-ee6557eeda8aeefa6db169f633ecdb7755dba247.zip
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.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings.c b/apps/settings.c
index f0d3d31b30..7a36a0ee1d 100644
--- a/apps/settings.c
+++ b/apps/settings.c
@@ -745,7 +745,7 @@ void settings_apply_skins(void)
745 if ( global_settings.sbs_file[0] && 745 if ( global_settings.sbs_file[0] &&
746 global_settings.sbs_file[0] != 0xff ) 746 global_settings.sbs_file[0] != 0xff )
747 { 747 {
748 snprintf(buf, sizeof buf, WPS_DIR "/%s.sbs", 748 snprintf(buf, sizeof buf, SBS_DIR "/%s.sbs",
749 global_settings.sbs_file); 749 global_settings.sbs_file);
750 sb_skin_data_load(SCREEN_MAIN, buf, true); 750 sb_skin_data_load(SCREEN_MAIN, buf, true);
751 } 751 }
@@ -768,7 +768,7 @@ void settings_apply_skins(void)
768#if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1) 768#if defined(HAVE_REMOTE_LCD) && (NB_SCREENS > 1)
769 if ( global_settings.rsbs_file[0] && 769 if ( global_settings.rsbs_file[0] &&
770 global_settings.rsbs_file[0] != 0xff ) { 770 global_settings.rsbs_file[0] != 0xff ) {
771 snprintf(buf, sizeof buf, WPS_DIR "/%s.rsbs", 771 snprintf(buf, sizeof buf, SBS_DIR "/%s.rsbs",
772 global_settings.rsbs_file); 772 global_settings.rsbs_file);
773 sb_skin_data_load(SCREEN_REMOTE, buf, true); 773 sb_skin_data_load(SCREEN_REMOTE, buf, true);
774 } 774 }