diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2010-01-29 07:52:13 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2010-01-29 07:52:13 +0000 |
| commit | eee5423fe10f247f74d69404924edf3a0d54e8cd (patch) | |
| tree | df46391368a2ad7930a926c59f53796229a933ab /apps/filetree.c | |
| parent | e3e436e2b5519637981b2667f79c42b2e4ed110b (diff) | |
| download | rockbox-eee5423fe10f247f74d69404924edf3a0d54e8cd.zip rockbox-eee5423fe10f247f74d69404924edf3a0d54e8cd.tar.gz rockbox-eee5423fe10f247f74d69404924edf3a0d54e8cd.tar.bz2 rockbox-eee5423fe10f247f74d69404924edf3a0d54e8cd.tar.xz | |
skin rework (FS#10922) notable changes:
- simplify the setting/skin relationship. settings are used as the fallback if it's not specified in the skin
- backdrop buffers are now in the skin buffer (which has also increased slightly to accomodate 1 backdrop for each skin and 2 full colour screens for bmps (up for 1.5))
- if no %X is specified in a skin then the backdrop setting will be used. use %Xd to explicitly disable a skin from displaying a backdrop
- the base skin can now specify a backdrop.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@24366 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetree.c')
| -rw-r--r-- | apps/filetree.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/apps/filetree.c b/apps/filetree.c index ccf4c2b..6062080 100644 --- a/apps/filetree.c +++ b/apps/filetree.c @@ -52,7 +52,6 @@ #include "radio.h" #endif #include "wps.h" -#include "backdrop.h" static int compare_sort_dir; /* qsort key for sorting directories */ @@ -503,9 +502,6 @@ int ft_enter(struct tree_context* c) /* wps config file */ case FILE_ATTR_WPS: splash(0, ID2P(LANG_WAIT)); -#if LCD_DEPTH > 1 - backdrop_unload(BACKDROP_SKIN_WPS); -#endif set_file(buf, (char *)global_settings.wps_file, MAX_FILENAME); settings_apply_skins(); @@ -515,9 +511,6 @@ int ft_enter(struct tree_context* c) /* remote-wps config file */ case FILE_ATTR_RWPS: splash(0, ID2P(LANG_WAIT)); -#if defined(HAVE_REMOTE_LCD) && LCD_REMOTE_DEPTH > 1 - remote_backdrop_unload(BACKDROP_SKIN_WPS); -#endif set_file(buf, (char *)global_settings.rwps_file, MAX_FILENAME); settings_apply_skins(); |