So using the newest snapshot (24 Sept 2014) openFromFile() causes a crash when using an array of sf:Music:
sf::Music* testMusic = new sf::Music[10];
testMusic[0].openFromFile("test.ogg");
Where this does not crash:
sf::Music testMusic;
testMusic.openFromFile("test.ogg");
Previously the array of sf::Music was fine. Is this intended? I could not find anything about sf::Music changing. Was I just lucky my code worked previously?