From e1074c9018d3bf6a6e1445d007d6d8aefdbe19d3 Mon Sep 17 00:00:00 2001 From: Bad Diode Date: Tue, 17 Oct 2023 20:34:10 +0200 Subject: [PATCH] Increase base volume 4x (1 channel max -12dB) --- src/devices/audio.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/devices/audio.c b/src/devices/audio.c index e6ccd8a..7402329 100644 --- a/src/devices/audio.c +++ b/src/devices/audio.c @@ -111,8 +111,8 @@ void note_on(AudioChannel *channel, Uint16 duration, Uint8 *data, Uint16 len, Uint8 vol, Uint8 attack, Uint8 decay, Uint8 sustain, Uint8 release, Uint8 pitch, bool loop) { channel->duration = duration; - channel->vol_l = (vol >> 4) / 16.0f * 0.9; - channel->vol_r = (vol & 0xf) / 16.0f * 0.9; + channel->vol_l = (vol >> 4) / 15.0f; + channel->vol_r = (vol & 0xf) / 15.0f; Sample sample = {0}; sample.data = data; @@ -278,7 +278,7 @@ audio_handler(void *ctx, Uint8 *out_stream, int len) { } int i; for (i = 0; i < len / 2; i++) { - stream[i] <<= 4; + stream[i] <<= 6; } }