summaryrefslogtreecommitdiff
path: root/apps/codecs/dumb/src/it
diff options
context:
space:
mode:
Diffstat (limited to 'apps/codecs/dumb/src/it')
-rw-r--r--apps/codecs/dumb/src/it/xmeffect.c8
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;
86 return; 86 return;
87 87
88#ifdef SIMULATOR 88#ifdef SIMULATOR
89if (log) printf("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value); 89if (log) DEBUGF("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value);
90#endif 90#endif
91 91
92 /* Linearisation of the effect number... */ 92 /* Linearisation of the effect number... */
@@ -99,7 +99,7 @@ if (log) printf("%c%02X", (effect<10)?('0'+effect):('A'+effect-10), value);
99 } 99 }
100 100
101#ifdef SIMULATOR 101#ifdef SIMULATOR
102if (log) printf(" - %2d %02X", effect, value); 102if (log) DEBUGF(" - %2d %02X", effect, value);
103#endif 103#endif
104 104
105#if 0 // This should be handled in itrender.c! 105#if 0 // This should be handled in itrender.c!
@@ -234,7 +234,7 @@ if (log) printf(" - %2d %02X", effect, value);
234 } 234 }
235 235
236#ifdef SIMULATOR 236#ifdef SIMULATOR
237if (log) printf(" - %2d %02X", effect, value); 237if (log) DEBUGF(" - %2d %02X", effect, value);
238#endif 238#endif
239 239
240 /* Inverse linearisation... */ 240 /* Inverse linearisation... */
@@ -244,7 +244,7 @@ if (log) printf(" - %2d %02X", effect, value);
244 } 244 }
245 245
246#ifdef SIMULATOR 246#ifdef SIMULATOR
247if (log) printf(" - %c%02X\n", 'A'+effect-1, value); 247if (log) DEBUGF(" - %c%02X\n", 'A'+effect-1, value);
248#endif 248#endif
249 249
250 entry->effect = effect; 250 entry->effect = effect;