diff options
| author | Michael Sevakis <jethead71@rockbox.org> | 2010-06-04 13:54:35 +0000 |
|---|---|---|
| committer | Michael Sevakis <jethead71@rockbox.org> | 2010-06-04 13:54:35 +0000 |
| commit | 43fcc1e80baca650f2e03a4b0d0e176fcacacdf4 (patch) | |
| tree | 8f3854e02c7d24013d65ff8723c008a46354a111 | |
| parent | e63e84a5dfb18e9b7eca8dabcd2d58ceac342529 (diff) | |
| download | rockbox-43fcc1e80baca650f2e03a4b0d0e176fcacacdf4.zip rockbox-43fcc1e80baca650f2e03a4b0d0e176fcacacdf4.tar.gz rockbox-43fcc1e80baca650f2e03a4b0d0e176fcacacdf4.tar.bz2 rockbox-43fcc1e80baca650f2e03a4b0d0e176fcacacdf4.tar.xz | |
test_gfx preprocessing needs to be rearranged a little different so mylcd defaults to core graphics unless greylib is being tested.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@26544 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | apps/plugins/test_gfx.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/apps/plugins/test_gfx.c b/apps/plugins/test_gfx.c index 3ba8956..2c46d16 100644 --- a/apps/plugins/test_gfx.c +++ b/apps/plugins/test_gfx.c @@ -16,13 +16,16 @@ * KIND, either express or implied. * ****************************************************************************/ + +//#define TEST_GREYLIB /* Uncomment for testing greylib instead of core gfx */ + #include "plugin.h" +#ifdef TEST_GREYLIB /* otherwise, mylcd defaults to core gfx */ #include "lib/grey.h" +#endif #include "lib/helper.h" #include "lib/mylcd.h" -//#define TEST_GREYLIB /* Uncomment for testing greylib instead of core gfx */ - #ifdef TEST_GREYLIB GREY_INFO_STRUCT static unsigned char *gbuf; |