mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-17 03:15:39 +00:00
SPU: Fix incorrect step value in attack phase
This commit is contained in:
parent
a47492382c
commit
2399c1dab7
|
@ -669,7 +669,7 @@ void SPU::Voice::SetADSRPhase(ADSRPhase phase)
|
|||
|
||||
case ADSRPhase::Attack:
|
||||
adsr_target.level = 32767; // 0 -> max
|
||||
adsr_target.step = regs.adsr.attack_step + 4;
|
||||
adsr_target.step = regs.adsr.attack_step;
|
||||
adsr_target.shift = regs.adsr.attack_shift;
|
||||
adsr_target.decreasing = false;
|
||||
adsr_target.exponential = regs.adsr.attack_exponential;
|
||||
|
|
Loading…
Reference in a new issue