mirror of https://github.com/PCSX2/pcsx2.git
SPU2: Increase maximum ADSR rate from 0x3FFF to 0x4000
This commit is contained in:
parent
0919b15183
commit
79705a2514
|
@ -34,7 +34,8 @@ void InitADSR() // INIT ADSR
|
|||
else
|
||||
rate <<= shift;
|
||||
|
||||
PsxRates[i] = (int)std::min(rate, (s64)0x3fffffffLL);
|
||||
// Maximum rate is 0x4000.
|
||||
PsxRates[i] = (int)std::min(rate, (s64)0x40000000LL);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue