diff options
Diffstat (limited to 'apps/plugins/jewels.c')
| -rw-r--r-- | apps/plugins/jewels.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/jewels.c b/apps/plugins/jewels.c index af5a374..a4ce1ae 100644 --- a/apps/plugins/jewels.c +++ b/apps/plugins/jewels.c @@ -20,11 +20,11 @@ ****************************************************************************/ #include "plugin.h" -#include "button.h" -#include "lcd.h" #ifdef HAVE_LCD_BITMAP +PLUGIN_HEADER + /* save files */ #define SCORE_FILE PLUGIN_DIR "/bejeweled.score" #define SAVE_FILE PLUGIN_DIR "/bejeweled.save" @@ -2466,7 +2466,6 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter) { char str[19]; /* plugin init */ - TEST_PLUGIN_API(api); (void)parameter; rb = api; /* end of plugin init */ |