From 88a89e0cdbfc4d745c48ff607b0774192d66218c Mon Sep 17 00:00:00 2001 From: Tomas Salfischberger Date: Tue, 14 Jun 2005 19:04:47 +0000 Subject: There is no printf() in rockbox, but DEBUGF() has the intended effect in simulator. And this was the last warning in iriver builds :D git-svn-id: svn://svn.rockbox.org/rockbox/trunk@6713 a1c6a512-1295-4272-9138-f99709370657 --- apps/codecs/dumb/src/it/xmeffect.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'apps/codecs/dumb/src/it/xmeffect.c') diff --git a/apps/codecs/dumb/src/it/xmeffect.c b/apps/codecs/dumb/src/it/xmeffect.c index 81b86c95b6..a635039bab 100644 --- a/apps/codecs/dumb/src/it/xmeffect.c +++ b/apps/codecs/dumb/src/it/xmeffect.c @@ -86,7 +86,7 @@ const int log = 0; return; #ifdef SIMULATOR -if (log) printf("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value); +if (log) DEBUGF("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value); #endif /* Linearisation of the effect number... */ @@ -99,7 +99,7 @@ if (log) printf("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value); } #ifdef SIMULATOR -if (log) printf(" - %2d %02X", effect, value); +if (log) DEBUGF(" - %2d %02X", effect, value); #endif #if 0 // This should be handled in itrender.c! @@ -234,7 +234,7 @@ if (log) printf(" - %2d %02X", effect, value); } #ifdef SIMULATOR -if (log) printf(" - %2d %02X", effect, value); +if (log) DEBUGF(" - %2d %02X", effect, value); #endif /* Inverse linearisation... */ @@ -244,7 +244,7 @@ if (log) printf(" - %2d %02X", effect, value); } #ifdef SIMULATOR -if (log) printf(" - %c%02X\n", 'A'+effect-1, value); +if (log) DEBUGF(" - %c%02X\n", 'A'+effect-1, value); #endif entry->effect = effect; -- cgit v1.2.3