summaryrefslogtreecommitdiff
path: root/apps/plugins/midi/sequencer.c
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2007-04-21 05:35:17 +0000
committerJens Arnold <amiconn@rockbox.org>2007-04-21 05:35:17 +0000
commitb1f00493078c189ea41a846aee0aa3b9330f490c (patch)
tree81fc7be55ea6543889fc0cd7745354b5a8c88465 /apps/plugins/midi/sequencer.c
parentc69f032df4753dbd5f848c12f41adeefa74a31a6 (diff)
downloadrockbox-b1f00493078c189ea41a846aee0aa3b9330f490c.tar.gz
rockbox-b1f00493078c189ea41a846aee0aa3b9330f490c.zip
Fix the undefined char symbols appearing in many output lines. This printf does neither support nor need \n.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13229 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/midi/sequencer.c')
-rw-r--r--apps/plugins/midi/sequencer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/midi/sequencer.c b/apps/plugins/midi/sequencer.c
index d56bd26f5c..68c29f35ad 100644
--- a/apps/plugins/midi/sequencer.c
+++ b/apps/plugins/midi/sequencer.c
@@ -230,7 +230,7 @@ void pressNote(int ch, int note, int vol)
230 if(drumSet[note]!=NULL) 230 if(drumSet[note]!=NULL)
231 { 231 {
232 if(note<35) 232 if(note<35)
233 printf("\nNOTE LESS THAN 35, AND A DRUM PATCH EXISTS FOR THIS? WHAT THE HELL?"); 233 printf("NOTE LESS THAN 35, AND A DRUM PATCH EXISTS FOR THIS? WHAT THE HELL?");
234 234
235 struct GWaveform * wf = drumSet[note]->waveforms[0]; 235 struct GWaveform * wf = drumSet[note]->waveforms[0];
236 voices[a].wf=wf; 236 voices[a].wf=wf;
@@ -328,7 +328,7 @@ int tick(void)
328 struct Track * tr = mf->tracks[a]; 328 struct Track * tr = mf->tracks[a];
329 329
330 if(tr == NULL) 330 if(tr == NULL)
331 printf("\nNULL TRACK: %d", a); 331 printf("NULL TRACK: %d", a);
332 332
333 333
334 //BIG DEBUG STATEMENT 334 //BIG DEBUG STATEMENT