computerscare-vcv-modules

computerscare modules for VCV Rack
Log | Files | Refs

commit 1a8c1914c01efb53ba84ebac7d3b67610284ef5e
parent 0b54a15dd5f3cb09067dea5cdb40937a1c2e0c71
Author: Adam M <[email protected]>
Date:   Sat, 16 Oct 2021 09:22:45 -0500

use reinterpret_cast for MenuParamModule rather than storing redundant instance

Diffstat:
Msrc/MenuParams.hpp | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/src/MenuParams.hpp b/src/MenuParams.hpp @@ -197,10 +197,10 @@ struct ComputerscareMenuParamModule : ComputerscarePolyModule { }; struct MultiselectParamQuantity : ParamQuantity { - ComputerscareMenuParamModule* module; std::string getDisplayValueString() override { + ComputerscareMenuParamModule* menuParamModule = reinterpret_cast<ComputerscareMenuParamModule*>(this->module); int index = Quantity::getValue(); - return module->getOptionValue(paramId, index); + return menuParamModule->getOptionValue(paramId, index); } }; struct MenuParamModuleWidget : ModuleWidget {