seventoes
Joined: 02 Oct 2005 Posts: 79
|
Posted: Mon Nov 14, 2005 3:14 am Post subject: libmad help |
|
|
How exactly do you get libmad to play an mp3 file? right now i have this and it doesnt seem to work:
| Code: |
MP3_Init(0);
MP3_Load("audiofiles/testing.mp3");
MP3_Play();
while(1) { //wait for X to be pressed
readpad(&pad, 1);
if(pad.Buttons & PSP_CTRL_CROSS) {
break;
}
}
MP3_Stop();
|
It doesnt even start the music. What else do i need to do? |
|