I am trying to use QSound. When I call isAvailable(), it returns to true. However, when I do newWav->play();, it plays the default Windows "error" bell. Here is my code:
Code:
qDebug() << newWav->isAvailable(); newWav->play();
Printable View
I am trying to use QSound. When I call isAvailable(), it returns to true. However, when I do newWav->play();, it plays the default Windows "error" bell. Here is my code:
Code:
qDebug() << newWav->isAvailable(); newWav->play();
From the QSound docs:
Quote:
Note that QSound does not support resources. This might be fixed in a future Qt version.
Oh wow. Good to know. Thought had I read that thoroughly. Thanks