mirror of
https://github.com/RaySollium99/picodrive.git
synced 2025-09-05 15:27:46 -04:00
sound, increase output level a bit
This commit is contained in:
parent
cce32a34da
commit
a5a230e0d8
2 changed files with 3 additions and 3 deletions
|
@ -14,7 +14,7 @@
|
|||
|
||||
/* limitter */
|
||||
#define Limit16(val) \
|
||||
val -= val >> 2; /* reduce level to avoid clipping */ \
|
||||
val -= val >> 3; /* reduce level to avoid clipping */ \
|
||||
if ((short)val != val) val = (val < 0 ? MINOUT : MAXOUT)
|
||||
|
||||
int mix_32_to_16l_level;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue