From 46b83833e1e1c6003ab1839658ddb3529f20d81e Mon Sep 17 00:00:00 2001 From: cam900 Date: Wed, 9 Aug 2023 20:36:59 +0900 Subject: [PATCH] Less louder output --- src/engine/platform/sound/c140.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/platform/sound/c140.c b/src/engine/platform/sound/c140.c index da5d997fd..dc0ff02ec 100644 --- a/src/engine/platform/sound/c140.c +++ b/src/engine/platform/sound/c140.c @@ -56,8 +56,8 @@ void c140_tick(struct c140_t *c140, const int cycle) c140->rout += c140->voice[i].rout; } // scale as 16bit - c140->lout >>= 8; - c140->rout >>= 8; + c140->lout >>= 13; + c140->rout >>= 13; } void c140_voice_tick(struct c140_t *c140, const unsigned char voice, const int cycle)