mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-09-14 13:32:08 +00:00
AX: make volume_delta signed
NFC because the current code always masks the volume + volume_delta sum to 16 bits.
This commit is contained in:
parent
812c6c2ea4
commit
ad81bf8927
1 changed files with 1 additions and 1 deletions
|
@ -10,7 +10,7 @@ namespace DSP::HLE
|
||||||
struct VolumeData
|
struct VolumeData
|
||||||
{
|
{
|
||||||
u16 volume;
|
u16 volume;
|
||||||
u16 volume_delta;
|
s16 volume_delta;
|
||||||
};
|
};
|
||||||
|
|
||||||
struct PBMixer
|
struct PBMixer
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue