Skip to content

Updated some things to get it to work with Juce 5.2 #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion source/FaustAudioPluginInstance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ void FaustAudioPluginInstance::addVerticalBargraph(const char* label, FAUSTFLOAT
//TODO:
}

void FaustAudioPluginInstance::addSoundfile(const char* label, Soundfile** sf_zone)
void FaustAudioPluginInstance::addSoundfile(const char* label, const char* filename, Soundfile** sf_zone)
{
//TODO:
}
Expand Down
4 changes: 2 additions & 2 deletions source/FaustAudioPluginInstance.h
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ class FaustAudioPluginInstance : public AudioPluginInstance
void addNumEntry(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT init, FAUSTFLOAT min, FAUSTFLOAT max, FAUSTFLOAT step) override;
void addHorizontalBargraph(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT min, FAUSTFLOAT max) override;
void addVerticalBargraph(const char* label, FAUSTFLOAT* zone, FAUSTFLOAT min, FAUSTFLOAT max) override;
void addSoundfile(const char* label, Soundfile** sf_zone) override;

void addSoundfile(const char* label, const char* filename, Soundfile** sf_zone) override;
// Unique
void createDSP();
void freeDSP();
Expand Down
2 changes: 1 addition & 1 deletion source/FaustGenFactory.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ llvm_dsp_factory* FaustgenFactory::createFactoryFromSourceCode(FaustAudioPluginI
{
instance->highlightON(error);
}
LOG("Invalid Faust code or compile options:" + error);
LOG("Invalid Faust code or compile options:" + error);
return 0;
}
}
Expand Down