I'm trying to play background music along with sound effects using Qt. However, I can't get more than one sound to play at once. For example:
QSound::play("Music.wav");
QSound::play("Effect.wav");
When this code is run (on Windows), you can hear Music.wav just start to play, but then it stops and Effect.wav plays. Is there any way to get the two sounds to play at once?