gearmulator

Emulation of classic VA synths of the late 90s/2000s that are based on Motorola 56300 family DSPs
Log | Files | Refs | Submodules | README | LICENSE

commit 14d07db03155c1ea3c2500d80379a44afba77895
parent ad42e3e6f72cd658e081b0618818d22b78c948a7
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Thu, 29 Jul 2021 17:52:21 +0200

set default master volume to maximum

Diffstat:
Msource/virusLib/microcontroller.cpp | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/source/virusLib/microcontroller.cpp b/source/virusLib/microcontroller.cpp @@ -85,7 +85,7 @@ void Microcontroller::sendInitControlCommands() sendControlCommand(GLOBAL_CHANNEL, 0x0); // Set global midi channel to 0 sendControlCommand(MIDI_CONTROL_LOW_PAGE, 0x1); // Enable midi CC to edit parameters on page A sendControlCommand(MIDI_CONTROL_HIGH_PAGE, 0x1); // Enable poly pressure to edit parameters on page B - sendControlCommand(MASTER_VOLUME, 100); // Set master volume to 100 + sendControlCommand(MASTER_VOLUME, 127); // Set master volume to maximum } void Microcontroller::createDefaultState()