From c84439aec3f08c4de8f4adc45e5f6d709d496b5e Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Mon, 6 May 2002 11:25:44 +0000 Subject: make debugf() do properly when SIMULATOR is defined, ignore the CRT_DISPLAY and use the symbol we'll always have defined when running on host git-svn-id: svn://svn.rockbox.org/rockbox/trunk@474 a1c6a512-1295-4272-9138-f99709370657 --- firmware/debug.c | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'firmware') diff --git a/firmware/debug.c b/firmware/debug.c index ae0fbe72c6..42b04ba605 100644 --- a/firmware/debug.c +++ b/firmware/debug.c @@ -25,7 +25,7 @@ char debugmembuf[100]; char debugbuf[200]; -#ifndef CRT_DISPLAY /* allow non archos platforms to display output */ +#ifndef SIMULATOR /* allow non archos platforms to display output */ static int debug_tx_ready(void) { @@ -187,17 +187,15 @@ void debugf(char *fmt, ...) #endif } -#else +#else /* SIMULATOR code coming up */ void debugf(char *fmt, ...) { -#ifdef DEBUG va_list ap; va_start( ap, fmt ); vsnprintf( debugmembuf, sizeof(debugmembuf), fmt, ap ); va_end( ap ); - printf( debugmembuf ); -#endif + printf( "%s", debugmembuf ); } #endif -- cgit v1.2.3