Probably a super basic question, and I apologize of this has been asked 100 times but my google'ing is coming up dry.
So, I have a simple program that opens a window and waits for me to close it. Before that main loop, I load an play a music clip like so ...
sf::Music music;
music.openFromFile( "../sounds/music_01.wav" );
music.play();
I debugged this and the sound file loads successfully but I hear nothing. Same thing with sound effects. Just silence...
Volume seems to be set to 100 so ... what else should I be looking at? This feels like it should "just work" but I'm sort of hitting a wall here.
Thanks!