summaryrefslogtreecommitdiff
path: root/apps/plugins/midi/synth.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/midi/synth.c')
-rw-r--r--apps/plugins/midi/synth.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/apps/plugins/midi/synth.c b/apps/plugins/midi/synth.c
index f65a062c43..78aaab18f4 100644
--- a/apps/plugins/midi/synth.c
+++ b/apps/plugins/midi/synth.c
@@ -92,7 +92,7 @@ int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
92 if(mf->tracks[a] == NULL) 92 if(mf->tracks[a] == NULL)
93 { 93 {
94 printf("\nNULL TRACK !!!"); 94 printf("\nNULL TRACK !!!");
95 rb->splash(HZ*2, true, "Null Track in loader."); 95 rb->splash(HZ*2, "Null Track in loader.");
96 return -1; 96 return -1;
97 } 97 }
98 98
@@ -115,8 +115,7 @@ int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
115 printf("\nPlease install the instruments."); 115 printf("\nPlease install the instruments.");
116 printf("\nSee Rockbox page for more info."); 116 printf("\nSee Rockbox page for more info.");
117 117
118 rb->splash(HZ*2, true, "No Instruments"); 118 rb->splash(HZ*2, "No Instruments");
119 rb->splash(HZ*2, true, "No Instruments");
120 return -1; 119 return -1;
121 } 120 }
122 121
@@ -151,7 +150,7 @@ int initSynth(struct MIDIfile * mf, char * filename, char * drumConfig)
151 file = rb->open(drumConfig, O_RDONLY); 150 file = rb->open(drumConfig, O_RDONLY);
152 if(file < 0) 151 if(file < 0)
153 { 152 {
154 rb->splash(HZ*2, true, "Bad drum config.\nDid you install the patchset?"); 153 rb->splash(HZ*2, "Bad drum config. Did you install the patchset?");
155 return -1; 154 return -1;
156 } 155 }
157 156