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 61a24d0beade6532234d6182fabbfbbf7986851b
parent d536aff73d2d80ccabab11b7257837ec04d51da9
Author: dsp56300 <dsp56300@users.noreply.github.com>
Date:   Wed, 17 Apr 2024 18:49:30 +0200

Adjusted default Master Volume to 92 to match the TI hardware in USB mode

Diffstat:
Mdoc/changelog.txt | 2++
Msource/virusLib/microcontroller.cpp | 2+-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/doc/changelog.txt b/doc/changelog.txt @@ -23,6 +23,8 @@ Patch Manager: Osirus/OsTIrus: +- [Imp] Adjusted default Master Volume to 92 to match the TI hardware in USB mode + - [Fix] Plugin may crash if a patch data source folder contains files not belonging to presets 1.3.10 diff --git a/source/virusLib/microcontroller.cpp b/source/virusLib/microcontroller.cpp @@ -112,7 +112,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, 0x0); // Disable poly pressure to edit parameters on page B - sendControlCommand(MASTER_VOLUME, 127); // Set master volume to maximum + sendControlCommand(MASTER_VOLUME, 92); // Set master volume to 92, this matches the Virus TI in USB mode sendControlCommand(MASTER_TUNE, 64); // Set master tune to 0 sendControlCommand(DEVICE_ID, OMNI_DEVICE_ID); // Set device ID to Omni }