diff --git a/distrho/src/DistrhoPluginInternal.hpp b/distrho/src/DistrhoPluginInternal.hpp index 07638641..b167c37f 100644 --- a/distrho/src/DistrhoPluginInternal.hpp +++ b/distrho/src/DistrhoPluginInternal.hpp @@ -724,7 +724,7 @@ public: fWriterIndex = (index + 1) % kMidiStorageCapacity; } - uint32_t receive(MidiEvent *events, uint32_t eventCount) + uint32_t receive(MidiEvent* events, uint32_t eventCount) { if (fMidiCount == 0) return eventCount; @@ -765,7 +765,7 @@ protected: uint8_t data[3]; }; - ShortMessage *fMidiStorage; + ShortMessage* fMidiStorage; volatile uint32_t fMidiCount; uint32_t fWriterIndex; Mutex fMutex; diff --git a/distrho/src/DistrhoPluginVST.cpp b/distrho/src/DistrhoPluginVST.cpp index 109b386b..b3ceb523 100644 --- a/distrho/src/DistrhoPluginVST.cpp +++ b/distrho/src/DistrhoPluginVST.cpp @@ -173,7 +173,7 @@ public: fQueue.send(midiData); } - uint32_t receiveEditorMidi(MidiEvent *events, uint32_t eventCount) + uint32_t receiveEditorMidi(MidiEvent* events, uint32_t eventCount) { return fQueue.receive(events, eventCount); } diff --git a/examples/SendNote/SendNoteExamplePlugin.cpp b/examples/SendNote/SendNoteExamplePlugin.cpp index 6727febc..7d14c45c 100644 --- a/examples/SendNote/SendNoteExamplePlugin.cpp +++ b/examples/SendNote/SendNoteExamplePlugin.cpp @@ -141,8 +141,8 @@ protected: } } - float *outputLeft = outputs[0]; - float *outputRight = outputs[1]; + float* outputLeft = outputs[0]; + float* outputRight = outputs[1]; std::memset(outputLeft, 0, frames * sizeof(float));