This website works better with JavaScript.
Home
Help
Sign In
falkTX
/
Carla
mirror of
https://github.com/falkTX/Carla
Watch
1
Star
0
Fork
0
Code
Releases
42
Activity
Browse Source
Fix uninitialized memory with sfzero and note-offs before note-ons
tags/v1.9.11
falkTX
6 years ago
parent
de35d8ad38
commit
7b8112b556
1 changed files
with
4 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+4
-1
source/modules/sfzero/sfzero/SFZSynth.cpp
+ 4
- 1
source/modules/sfzero/sfzero/SFZSynth.cpp
View File
@@ -12,7 +12,10 @@
namespace sfzero
{
Synth::Synth() : Synthesiser() {}
Synth::Synth() : Synthesiser()
{
carla_zeroStructs(noteVelocities_, 128);
}
void Synth::noteOn(int midiChannel, int midiNoteNumber, float velocity)
{
Write
Preview
Loading…
Cancel
Save