mirror of https://github.com/PCSX2/pcsx2.git
spu2x: avoid 64 bits compilation issue
Reported by 3kinox Solution given by unknownbrackets
This commit is contained in:
parent
67551f31fd
commit
2a0cd77eef
|
@ -34,7 +34,7 @@ void InitADSR() // INIT ADSR
|
|||
else
|
||||
rate <<= shift;
|
||||
|
||||
PsxRates[i] = (int)std::min( rate, 0x3fffffffLL );
|
||||
PsxRates[i] = (int)std::min( rate, (s64)0x3fffffffLL );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue