followup fixes to psp version JSFx.cpp .

Added psp JSfx.cpp to iOS project.
This commit is contained in:
techdragon.nguyen@gmail.com
2012-02-05 12:30:53 +00:00
parent 5c3baedf83
commit 37566d148d
2 changed files with 20 additions and 0 deletions
+10
View File
@@ -144,6 +144,16 @@ JSample *JSoundSystem::LoadSample(const char *fileName)
}
void JSoundSystem::PauseMusic(JMusic *music)
{
StopMusic(music);
}
void JSoundSystem::ResumeMusic(JMusic *music)
{
PlayMusic(music);
}
void JSoundSystem::PlayMusic(JMusic *music, bool looping)