Skip to content

Commit

Permalink
[SMS] Normalize sound levels.
Browse files Browse the repository at this point in the history
  • Loading branch information
OtherCrashOverride committed Jul 26, 2018
1 parent b4d6163 commit fe9c1c1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions smsplusgx-go/components/smsplus/sound/sound.c
Original file line number Diff line number Diff line change
Expand Up @@ -267,8 +267,8 @@ void sound_mixer_callback(int16 **stream, int16 **output, int length)
{
//int16 temp = (fm_buffer[0][i] + fm_buffer[1][i]) / 2;
//int16 temp = psg_buffer[1][i];
output[0][i] = psg_buffer[0][i] * 1.75f;
output[1][i] = psg_buffer[1][i] * 1.75f;
output[0][i] = psg_buffer[0][i] * 2.75f;
output[1][i] = psg_buffer[1][i] * 2.75f;
}
}

Expand Down

0 comments on commit fe9c1c1

Please sign in to comment.