mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-04 18:05:06 +01:00
amplified YM2413 default output by 2
This commit is contained in:
parent
b088d33ce0
commit
57c5d89380
@ -1723,8 +1723,8 @@ void YM2413Update(long int *buffer, int length)
|
||||
rhythm_calc(&ym2413.P_CH[0], (ym2413.noise_rng>>0)&1 );
|
||||
}
|
||||
|
||||
/* Melody (MO) & Rythm (RO) outputs mixing */
|
||||
out = output[0] + (output[1] * 2);
|
||||
/* Melody (MO) & Rythm (RO) outputs mixing & amplification */
|
||||
out = (output[0] + (output[1] * 2)) * 2;
|
||||
|
||||
/* Store to stereo sound buffer */
|
||||
*buffer++ = out;
|
||||
|
Loading…
Reference in New Issue
Block a user