diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2008-11-03 14:37:50 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2008-11-03 14:37:50 +0000 |
| commit | ac488f8cb77d7786fe22e642f6177f46e5e6b1db (patch) | |
| tree | 9e8ff3c76608bd0d1f788ea01679b82921d0e09d /apps/plugins/pegbox.c | |
| parent | d34837cba14de3792bd84753370cb8bd92beedbf (diff) | |
| download | rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.zip rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.tar.gz rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.tar.bz2 rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.tar.xz | |
Makefile overhaul. All generated bitmaps are now explicitly in OBJDIR/bitmaps and OBJDIR/pluginbitmaps, and plugins properly depend on their respective bitmap files. Fixes #6847.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@18987 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/pegbox.c')
| -rw-r--r-- | apps/plugins/pegbox.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/plugins/pegbox.c b/apps/plugins/pegbox.c index 0b181fb..643e793 100644 --- a/apps/plugins/pegbox.c +++ b/apps/plugins/pegbox.c @@ -20,12 +20,12 @@ ****************************************************************************/ #include "plugin.h" -#include "pegbox_header.h" -#include "pegbox_pieces.h" +#include "pluginbitmaps/pegbox_header.h" +#include "pluginbitmaps/pegbox_pieces.h" #if LCD_HEIGHT >= 80 /* enough space for a graphical menu */ -#include "pegbox_menu_top.h" -#include "pegbox_menu_items.h" +#include "pluginbitmaps/pegbox_menu_top.h" +#include "pluginbitmaps/pegbox_menu_items.h" #define MENU_X (LCD_WIDTH-BMPWIDTH_pegbox_menu_items)/2 #define MENU_Y BMPHEIGHT_pegbox_menu_top #define ITEM_WIDTH BMPWIDTH_pegbox_menu_items |