Hi, on my game the sf::Music class doesn't seem to be working at all. I get no errors, and my path to the file is correct, but no music is being played. Here's some of my code:
//Main music
sf::Music m_mainMusic;
//Load mainMusic into memory and set some propertie
m_mainMusic.openFromFile("Resources/japanesemusic.ogg");
m_mainMusic.setVolume(50);
m_mainMusic.setLoop(true);
m_mainMusic.play();
It won't work at all, and I tried using sf::Sound and soundbuffer as well and they didn't work either. Any suggestions?