Fix capitalization of the word MIDI

This commit is contained in:
Robbert van der Helm
2020-04-26 18:19:10 +02:00
parent 85afd4107e
commit af6ae2c2ad
6 changed files with 14 additions and 14 deletions
+2 -2
View File
@@ -341,8 +341,8 @@ intptr_t HostBridge::dispatch(AEffect* /*plugin*/,
}; break;
case effProcessEvents:
// Because of limitations of the Win32 API we have to use a seperate
// thread and socket to pass midi events. Otherwise plugins will
// stop receiving midi data when they have an open dropdowns or
// thread and socket to pass MIDI events. Otherwise plugins will
// stop receiving MIDI data when they have an open dropdowns or
// message box.
return send_event(host_vst_dispatch_midi_events,
dispatch_midi_events_mutex, converter,
+1 -1
View File
@@ -145,7 +145,7 @@ class HostBridge {
* Used specifically for the `effProcessEvents` opcode. This is needed
* because the Win32 API is designed to block during certain GUI
* interactions such as resizing a window or opening a dropdown. Without
* this midi input would just stop working at times.
* this MIDI input would just stop working at times.
*/
boost::asio::local::stream_protocol::socket host_vst_dispatch_midi_events;
boost::asio::local::stream_protocol::socket vst_host_callback;