summaryrefslogtreecommitdiffstats
path: root/apps
diff options
context:
space:
mode:
authorNils Wallménius <nils@rockbox.org>2009-01-01 13:17:22 +0000
committerNils Wallménius <nils@rockbox.org>2009-01-01 13:17:22 +0000
commit91ad8f0029fe2b4295a89393d7cdbc4707c46c17 (patch)
tree690bd494ef07e6b3354ae8415f3bb11ef336c4f7 /apps
parent36531c7471374260f8c987380f228f32688f4d20 (diff)
downloadrockbox-91ad8f0029fe2b4295a89393d7cdbc4707c46c17.tar.gz
rockbox-91ad8f0029fe2b4295a89393d7cdbc4707c46c17.zip
Fix building invadrog with DEBUG defined, patch by Yoshihisa Uchida, FS#9737
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19633 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
-rw-r--r--apps/plugins/invadrox.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/apps/plugins/invadrox.c b/apps/plugins/invadrox.c
index 8554e511d8..ae89985f91 100644
--- a/apps/plugins/invadrox.c
+++ b/apps/plugins/invadrox.c
@@ -44,8 +44,7 @@ PLUGIN_HEADER
/* #define DEBUG */
#ifdef DEBUG
-#include <stdio.h>
-#define DBG(format, arg...) { printf("%s: " format, __FUNCTION__, ## arg); }
+#define DBG(format, arg...) { DEBUGF("%s: " format, __FUNCTION__, ## arg); }
#else
#define DBG(format, arg...) {}
#endif
@@ -1789,7 +1788,7 @@ void game_loop(void)
PLAYFIELD_Y + 1 - SCORENUM_Y - FONT_HEIGHT);
/* Wait until next frame */
- DBG("%d (%d)\n", end - *rb->current_tick, (CYCLETIME * HZ) / 1000);
+ DBG("%ld (%d)\n", end - *rb->current_tick, (CYCLETIME * HZ) / 1000);
if (end > *rb->current_tick) {
rb->sleep(end - *rb->current_tick);
} else {