1
0
Fork 0
forked from len0rd/rockbox

Plugin fixes for simulator: (1) Don't compile calendar for units without RTC. (2) Don't compile wormlet for non-recorders.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5567 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jens Arnold 2005-01-16 15:54:47 +00:00
parent 166f7a2fe0
commit 3d1ca9deb5
2 changed files with 2 additions and 2 deletions

View file

@ -19,7 +19,7 @@
****************************************************************************/ ****************************************************************************/
#include "plugin.h" #include "plugin.h"
#ifdef HAVE_LCD_BITMAP #if defined(HAVE_LCD_BITMAP) && defined(HAVE_RTC)
#include <timefuncs.h> #include <timefuncs.h>

View file

@ -18,7 +18,7 @@
****************************************************************************/ ****************************************************************************/
#include "plugin.h" #include "plugin.h"
#ifdef HAVE_LCD_BITMAP #if defined(HAVE_LCD_BITMAP) && (CONFIG_KEYPAD == RECORDER_PAD)
/* size of the field the worm lives in */ /* size of the field the worm lives in */
#define FIELD_RECT_X 1 #define FIELD_RECT_X 1