VstdLib: fix compile error in debug builds

Typo in variable names.
This commit is contained in:
Kawe Mazidjatari 2024-07-31 15:16:11 +02:00
parent e41366f065
commit 6782cdc73b

View File

@ -135,7 +135,7 @@ float CUniformRandomStream::RandomFloatExp(const float flMinVal, const float flM
int CUniformRandomStream::RandomInt(const int iLow, const int iHigh)
{
Assert(lLow <= lHigh);
Assert(iLow <= iHigh);
unsigned int maxAcceptable;
unsigned int x = iHigh - iLow + 1;