Fix sound test button

This commit is contained in:
Jeff 2015-09-09 16:47:09 -04:00
parent d6398477ae
commit badbcf2753
3 changed files with 8 additions and 1 deletions

View file

@ -122,4 +122,9 @@ void SoundEngine::playSound(QString fileName)
audioData[fileName]->setPosition(0);
audioData[fileName]->play();
#endif
}
void SoundEngine::testSound()
{
playSound("player_join");
}