Change variable names for consistency

This commit is contained in:
Robbert van der Helm
2020-04-21 17:02:28 +02:00
parent d2bf5c35a4
commit 27ca18869b
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -350,7 +350,7 @@ intptr_t PluginBridge::host_callback(AEffect* effect,
void* data, void* data,
float option) { float option) {
HostCallbackDataConverter converter(effect, time_info); HostCallbackDataConverter converter(effect, time_info);
return send_event(vst_host_callback, host_callback_semaphore, converter, return send_event(vst_host_callback, host_callback_mutex, converter,
std::nullopt, opcode, index, value, data, option); std::nullopt, opcode, index, value, data, option);
} }
+1 -1
View File
@@ -164,7 +164,7 @@ class PluginBridge {
* function being called by two threads at once. See `send_event()` for more * function being called by two threads at once. See `send_event()` for more
* information. * information.
*/ */
std::mutex host_callback_semaphore; std::mutex host_callback_mutex;
/** /**
* A scratch buffer for sending and receiving data during `process` and * A scratch buffer for sending and receiving data during `process` and