Fix small typos

This commit is contained in:
Robbert van der Helm
2020-05-04 00:21:44 +02:00
parent 51f3b6d18a
commit 592b5acdf1
2 changed files with 3 additions and 2 deletions
+1 -1
View File
@@ -9,5 +9,5 @@ option(
'use-winedbg', 'use-winedbg',
type : 'boolean', type : 'boolean',
value : false, value : false,
description : 'Whether to run the Wien VST host with GDB attached. Might not always be reliable.' description : 'Whether to run the Wine VST host with GDB attached. Might not always be reliable.'
) )
+2 -1
View File
@@ -312,6 +312,7 @@ class DispatchDataConverter : DefaultDataConverter {
break; break;
case effGetMidiKeyName: case effGetMidiKeyName:
return *static_cast<const VstMidiKeyName*>(data); return *static_cast<const VstMidiKeyName*>(data);
break;
// Any VST host I've encountered has properly zeroed out these their // Any VST host I've encountered has properly zeroed out these their
// string buffers, but we'll add a list of opcodes that should // string buffers, but we'll add a list of opcodes that should
// return a string just in case `DefaultDataConverter::read()` can't // return a string just in case `DefaultDataConverter::read()` can't
@@ -436,7 +437,7 @@ intptr_t HostBridge::dispatch(AEffect* /*plugin*/,
logger.log("The plugin crashed during shutdown, ignoring"); logger.log("The plugin crashed during shutdown, ignoring");
} }
// Boost.Process will send SIGKILL to the Wien host for us when this // Boost.Process will send SIGKILL to the Wine host for us when this
// class gets destroyed. Because the process is running a few // class gets destroyed. Because the process is running a few
// threads Wine will say something about a segfault (probably // threads Wine will say something about a segfault (probably
// related to `std::terminate`), but this doesn't seem to have any // related to `std::terminate`), but this doesn't seem to have any