core, implement GG stereo

This commit is contained in:
kub 2024-01-21 21:41:31 +01:00
parent fa4e0531d4
commit 70efc52db8
9 changed files with 112 additions and 80 deletions

View file

@ -753,10 +753,10 @@ void plat_update_volume(int has_changed, int is_up)
/* set the right mixer func */
if (vol >= 5)
PsndMix_32_to_16l = mix_32_to_16l_stereo;
PsndMix_32_to_16 = mix_32_to_16_stereo;
else {
mix_32_to_16l_level = 5 - vol;
PsndMix_32_to_16l = mix_32_to_16l_stereo_lvl;
mix_32_to_16_level = 5 - vol;
PsndMix_32_to_16 = mix_32_to_16_stereo_lvl;
}
}