summaryrefslogtreecommitdiff
path: root/apps/plugins/snake2.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2008-11-03 14:37:50 +0000
committerBjörn Stenberg <bjorn@haxx.se>2008-11-03 14:37:50 +0000
commitac488f8cb77d7786fe22e642f6177f46e5e6b1db (patch)
tree9e8ff3c76608bd0d1f788ea01679b82921d0e09d /apps/plugins/snake2.c
parentd34837cba14de3792bd84753370cb8bd92beedbf (diff)
downloadrockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.tar.gz
rockbox-ac488f8cb77d7786fe22e642f6177f46e5e6b1db.zip
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/snake2.c')
-rw-r--r--apps/plugins/snake2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/snake2.c b/apps/plugins/snake2.c
index 1bddeb6b3b..a99c646d92 100644
--- a/apps/plugins/snake2.c
+++ b/apps/plugins/snake2.c
@@ -38,11 +38,11 @@ PLUGIN_HEADER
38#define HEIGHT 16 38#define HEIGHT 16
39 39
40#if (LCD_WIDTH >= 160) && (LCD_HEIGHT >= 128) && (LCD_DEPTH >= 1) 40#if (LCD_WIDTH >= 160) && (LCD_HEIGHT >= 128) && (LCD_DEPTH >= 1)
41#include "snake2_header1.h" 41#include "pluginbitmaps/snake2_header1.h"
42#include "snake2_header2.h" 42#include "pluginbitmaps/snake2_header2.h"
43#include "snake2_left.h" 43#include "pluginbitmaps/snake2_left.h"
44#include "snake2_right.h" 44#include "pluginbitmaps/snake2_right.h"
45#include "snake2_bottom.h" 45#include "pluginbitmaps/snake2_bottom.h"
46#define BMPHEIGHT_snake2_header BMPHEIGHT_snake2_header1 46#define BMPHEIGHT_snake2_header BMPHEIGHT_snake2_header1
47#define BMPWIDTH_snake2_header BMPWIDTH_snake2_header1 47#define BMPWIDTH_snake2_header BMPWIDTH_snake2_header1
48#endif 48#endif