The library does not compile anymore with the latest juce version because of unique pointers:
sfzero::Sound *sound = dynamic_cast<sfzero::Sound *>(getSound(0));
needs to be changed to:
sfzero::Sound *sound = dynamic_cast<sfzero::Sound *>(getSound(0).get());
The library does not compile anymore with the latest juce version because of unique pointers:
sfzero::Sound *sound = dynamic_cast<sfzero::Sound *>(getSound(0));needs to be changed to:
sfzero::Sound *sound = dynamic_cast<sfzero::Sound *>(getSound(0).get());