mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-06 15:48:05 -04:00
core, implement GG stereo
This commit is contained in:
parent
fa4e0531d4
commit
70efc52db8
9 changed files with 112 additions and 80 deletions
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue