Problem with simple MP3 player!!!

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
darkness
Posts: 121
Joined: Sun Jun 15, 2008 8:42 pm

Problem with simple MP3 player!!!

Post by darkness »

I have to load with a function a MP3 file everytime that I want it, so I've writed it:

Code: Select all

int Music_player(char* fileName)
{
    if(inited==1){ MP3_End(); inited=0; }
    MP3_Init(1);
    MP3_Load(fileName);
    MP3_Play();
    inited=1;
    return 0;
}
But with this func I can't load more than 1 file, ( if I try to load more files the psp crash!!! )...
However if there is another simple MP3 lib I can use it!
Post Reply