From 22cb12d0663d447408761cd5830d7c1c87a76e20 Mon Sep 17 00:00:00 2001 From: Vesa Date: Sat, 22 Mar 2014 12:31:34 +0200 Subject: [PATCH] Increase the volume of OpulenZ, because it is very very quiet and it's better to correct this now before 1.0.0 is released --- plugins/opl2/opl2instrument.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/opl2/opl2instrument.cpp b/plugins/opl2/opl2instrument.cpp index 26c3ae10a..a1b58a7e7 100644 --- a/plugins/opl2/opl2instrument.cpp +++ b/plugins/opl2/opl2instrument.cpp @@ -395,7 +395,7 @@ void opl2instrument::play( sampleFrame * _working_buffer ) sample_t s = float(renderbuffer[frame])/32768.0; for( ch_cnt_t ch = 0; ch < DEFAULT_CHANNELS; ++ch ) { - _working_buffer[frame][ch] = s; + _working_buffer[frame][ch] = s * 4.0; } } emulatorMutex.unlock();