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/screen_access.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/screen_access.c')
| -rw-r--r-- | apps/screen_access.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/apps/screen_access.c b/apps/screen_access.c index 4744a26..871b1f8 100644 --- a/apps/screen_access.c +++ b/apps/screen_access.c @@ -201,9 +201,7 @@ struct screen screens[NB_SCREENS] = .backlight_set_timeout=&backlight_set_timeout, #if LCD_DEPTH > 1 .backdrop_load=&backdrop_load, - .backdrop_unload=&backdrop_unload, .backdrop_show=&backdrop_show, - .backdrop_hide=&backdrop_hide, #endif #ifdef HAVE_BUTTONBAR .has_buttonbar=false, @@ -291,9 +289,7 @@ struct screen screens[NB_SCREENS] = #if LCD_DEPTH > 1 .backdrop_load=&remote_backdrop_load, - .backdrop_unload=&remote_backdrop_unload, .backdrop_show=&remote_backdrop_show, - .backdrop_hide=&remote_backdrop_hide, #endif #ifdef HAVE_BUTTONBAR .has_buttonbar=false, |