From 5d9521f684262bf46a8d5b70eb423ecb43068e82 Mon Sep 17 00:00:00 2001 From: itsmattkc Date: Tue, 22 Jan 2019 22:56:37 +1100 Subject: [PATCH] fixed some comments --- effects/internal/vsthost.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/effects/internal/vsthost.cpp b/effects/internal/vsthost.cpp index f6d29a0a6..038d0c958 100644 --- a/effects/internal/vsthost.cpp +++ b/effects/internal/vsthost.cpp @@ -39,12 +39,12 @@ extern "C" { break; case audioMasterGetCurrentProcessLevel: return 0; - // modulePtr other opcodes here... there will be lots of them + // handle other opcodes here... there will be lots of them case audioMasterEndEdit: // change made mainWindow->setWindowModified(true); break; default: - qInfo() << "Plugin requested unmodulePtrd opcode" << opcode; + qInfo() << "Plugin requested unhandled opcode" << opcode; break; } return 0; @@ -151,7 +151,7 @@ bool VSTHost::configurePluginCallbacks() { return false; } - // Create dispatcher modulePtr + // Create dispatcher handle dispatcher = reinterpret_cast(plugin->dispatcher); // Set up plugin callback functions