SPU2: Increase maximum ADSR rate from 0x3FFF to 0x4000

This commit is contained in:
refractionpcsx2 2023-04-13 23:39:07 +01:00
parent 0919b15183
commit 79705a2514
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}
}