Skip to content

Small change to keep the library compatible with latest JUCE #5

@PatrickKunz

Description

@PatrickKunz

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());

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions