Search found 4 matches

by Miki
Sat Aug 30, 2008 2:46 am
Forum: PSP Development
Topic: MP3 Loop, more 'attach-strings' problem
Replies: 13
Views: 5350

About the while loop, you were right, it had to be a while (1) instead of (0),


I'll first go buy some book about C to learn the basics of the language.
by Miki
Sat Aug 30, 2008 1:22 am
Forum: PSP Development
Topic: MP3 Loop, more 'attach-strings' problem
Replies: 13
Views: 5350

huh, try this: char toload[80]; //or you might as well want to use char * toload = ""; for unlimited string sprintf(toload, "sound%d.mp3", songtel); MP3_Load(toload); for more information: http://www.cplusplus.com/reference/clibrar...
by Miki
Fri Aug 29, 2008 11:39 pm
Forum: PSP Development
Topic: MP3 Loop, more 'attach-strings' problem
Replies: 13
Views: 5350

I have tried that before, but it doesn't seem to work. Sorry if its in the wrong section ;) char toload[80]; strcat (toload,"sound"); strcat (toload,(char)songtel); strcat (toload,".mp3"); MP3_Load&am...
by Miki
Fri Aug 29, 2008 9:08 pm
Forum: PSP Development
Topic: MP3 Loop, more 'attach-strings' problem
Replies: 13
Views: 5350

MP3 Loop, more 'attach-strings' problem

Its a stupid question, i guess, but I just can't find the answer :) Okey, i'm going to make a casino game. The problem here is sound. I want that there are 2 songs playing in a loop. The problem in my code is where i added :// PROBLEM IS HERE!!!!! There should be something like this : MP3_Load("...