We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 19706f4 commit cd5dea1Copy full SHA for cd5dea1
1 file changed
Source/Processors/Events/Events.cpp
@@ -219,7 +219,10 @@ String SystemEvent::getSyncText(const MidiMessage& msg)
219
220
//Event
221
Event::Event(const Event& other)
222
- : Event(other)
+ : EventBase(other),
223
+ m_channel(other.m_channel),
224
+ m_channelInfo(other.m_channelInfo),
225
+ m_eventType(other.m_eventType)
226
{
227
size_t size = other.m_channelInfo->getDataSize();
228
m_data.malloc(size);
0 commit comments