Skip to content
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