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/bookmark.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/bookmark.c')
| -rw-r--r-- | apps/bookmark.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/apps/bookmark.c b/apps/bookmark.c index 78bbb77..8557083 100644 --- a/apps/bookmark.c +++ b/apps/bookmark.c @@ -40,7 +40,6 @@ #include "yesno.h" #include "list.h" #include "plugin.h" -#include "backdrop.h" #include "file.h" #include "filefuncs.h" @@ -165,7 +164,6 @@ bool bookmark_autobookmark(void) char* bookmark; if (!system_check()) return false; - int i; audio_pause(); /* first pause playback */ bookmark = create_bookmark(); @@ -193,12 +191,6 @@ bool bookmark_autobookmark(void) str(LANG_CONFIRM_WITH_BUTTON)}; const struct text_message message={lines, 2}; #endif - FOR_NB_SCREENS(i) - { -#if LCD_DEPTH > 1 - screens[i].backdrop_show(BACKDROP_MAIN); -#endif - } if(gui_syncyesno_run(&message, NULL, NULL)==YESNO_YES) { |