forked from len0rd/rockbox
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
This commit is contained in:
parent
c69f032df4
commit
b1f0049307
5 changed files with 31 additions and 31 deletions
|
@ -133,7 +133,7 @@ enum plugin_status plugin_start(struct plugin_api* api, void* parameter)
|
|||
rb->cpu_boost(true);
|
||||
#endif
|
||||
|
||||
printf("\n%s", parameter);
|
||||
printf("%s", parameter);
|
||||
/* rb->splash(HZ, true, parameter); */
|
||||
|
||||
#ifdef RB_PROFILE
|
||||
|
@ -218,12 +218,12 @@ int midimain(void * filename)
|
|||
{
|
||||
int notesUsed = 0;
|
||||
int a=0;
|
||||
printf("\nLoading file");
|
||||
printf("Loading file");
|
||||
mf= loadFile(filename);
|
||||
|
||||
if(mf == NULL)
|
||||
{
|
||||
printf("\nError loading file.");
|
||||
printf("Error loading file.");
|
||||
return -1;
|
||||
}
|
||||
|
||||
|
@ -245,7 +245,7 @@ int midimain(void * filename)
|
|||
* This seems to work quite well. On a laptop, anyway.
|
||||
*/
|
||||
|
||||
printf("\nOkay, starting sequencing");
|
||||
printf("Okay, starting sequencing");
|
||||
|
||||
bpm=mf->div*1000000/tempo;
|
||||
numberOfSamples=SAMPLE_RATE/bpm;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue