diff options
author | Tomas Salfischberger <tomas@rockbox.org> | 2005-06-14 19:04:47 +0000 |
---|---|---|
committer | Tomas Salfischberger <tomas@rockbox.org> | 2005-06-14 19:04:47 +0000 |
commit | 88a89e0cdbfc4d745c48ff607b0774192d66218c (patch) | |
tree | fd32bc170d2687acf2ccde3430d0fbba3fbae5ca /apps/codecs | |
parent | 184d82ec1696c109a61acf51c8563f377e982478 (diff) |
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
Diffstat (limited to 'apps/codecs')
-rw-r--r-- | apps/codecs/dumb/src/it/xmeffect.c | 8 |
1 files changed, 4 insertions, 4 deletions
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; |