mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Fixed some errors in the examples
This commit is contained in:
parent
69d5f16be0
commit
7035a40879
7 changed files with 13 additions and 25 deletions
|
|
@ -157,9 +157,9 @@ private:
|
|||
return output;
|
||||
}
|
||||
|
||||
void loadNewSample (InputStream* soundBuffer, const char* format)
|
||||
void loadNewSample (std::unique_ptr<InputStream> soundBuffer, const char* format)
|
||||
{
|
||||
std::unique_ptr<AudioFormatReader> formatReader (formatManager.findFormatForFileExtension (format)->createReaderFor (soundBuffer, true));
|
||||
std::unique_ptr<AudioFormatReader> formatReader (formatManager.findFormatForFileExtension (format)->createReaderFor (soundBuffer.release(), true));
|
||||
|
||||
BigInteger midiNotes;
|
||||
midiNotes.setRange (0, 126, true);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue