fix typo of wps and sbs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24841 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
31eda59720
commit
f11fd781d4
2 changed files with 16 additions and 12 deletions
|
@ -754,17 +754,18 @@ void settings_apply_skins(void)
|
|||
skin_font_init();
|
||||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
const char* setting;
|
||||
const char* setting = global_settings.sbs_file;
|
||||
const char* suffix = ".sbs";
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
if (i == SCREEN_REMOTE)
|
||||
{
|
||||
setting = global_settings.rsbs_file;
|
||||
else
|
||||
suffix = ".rsbs";
|
||||
}
|
||||
#endif
|
||||
setting = global_settings.sbs_file;
|
||||
if (setting[0] && setting[0] != '-')
|
||||
{
|
||||
snprintf(buf, sizeof buf, SBS_DIR "/%s.%ssbs", setting,
|
||||
i == SCREEN_MAIN? "" : "r");
|
||||
snprintf(buf, sizeof buf, SBS_DIR "/%s%s", setting, suffix);
|
||||
sb_skin_data_load(i, buf, true);
|
||||
}
|
||||
else
|
||||
|
@ -776,14 +777,17 @@ void settings_apply_skins(void)
|
|||
FOR_NB_SCREENS(i)
|
||||
{
|
||||
const char* setting = global_settings.wps_file;
|
||||
const char* suffix = ".wps";
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
if (i == SCREEN_REMOTE)
|
||||
setting = global_settings.rsbs_file;
|
||||
{
|
||||
setting = global_settings.rwps_file;
|
||||
suffix = ".rwps";
|
||||
}
|
||||
#endif
|
||||
if (setting[0] && setting[0] != '-')
|
||||
{
|
||||
snprintf(buf, sizeof buf, WPS_DIR "/%s.%swps", setting,
|
||||
i == SCREEN_MAIN? "" : "r");
|
||||
snprintf(buf, sizeof buf, WPS_DIR "/%s%s", setting, suffix);
|
||||
wps_data_load(SCREEN_MAIN, buf, true);
|
||||
}
|
||||
else
|
||||
|
|
|
@ -199,7 +199,7 @@ static const char graphic_numeric[] = "graphic,numeric";
|
|||
|
||||
/* Default theme settings */
|
||||
#define DEFAULT_WPSNAME "cabbiev2"
|
||||
#define DEFAULT_SBS_NAME "-"
|
||||
#define DEFAULT_SBSNAME "-"
|
||||
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
|
||||
|
@ -1440,13 +1440,13 @@ const struct settings_list settings[] = {
|
|||
DEFAULT_WPSNAME, WPS_DIR "/", ".wps"),
|
||||
#ifdef HAVE_LCD_BITMAP
|
||||
TEXT_SETTING(F_THEMESETTING,sbs_file, "sbs",
|
||||
DEFAULT_SBS_NAME, SBS_DIR "/", ".sbs"),
|
||||
DEFAULT_SBSNAME, SBS_DIR "/", ".sbs"),
|
||||
#endif
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
TEXT_SETTING(F_THEMESETTING,rwps_file,"rwps",
|
||||
DEFAULT_SBS_NAME, WPS_DIR "/", ".rwps"),
|
||||
DEFAULT_WPSNAME, WPS_DIR "/", ".rwps"),
|
||||
TEXT_SETTING(F_THEMESETTING,rsbs_file, "rsbs",
|
||||
DEFAULT_WPSNAME, SBS_DIR "/", ".rsbs"),
|
||||
DEFAULT_SBSNAME, SBS_DIR "/", ".rsbs"),
|
||||
#endif
|
||||
TEXT_SETTING(0,lang_file,"lang","-",LANG_DIR "/",".lng"),
|
||||
#if LCD_DEPTH > 1
|
||||
|
|
Loading…
Reference in a new issue