mirror of
https://github.com/Mauler125/r5sdk.git
synced 2025-02-09 19:15:03 +01:00
VstdLib: fix compile error in debug builds
Typo in variable names.
This commit is contained in:
parent
e41366f065
commit
6782cdc73b
@ -135,7 +135,7 @@ float CUniformRandomStream::RandomFloatExp(const float flMinVal, const float flM
|
|||||||
|
|
||||||
int CUniformRandomStream::RandomInt(const int iLow, const int iHigh)
|
int CUniformRandomStream::RandomInt(const int iLow, const int iHigh)
|
||||||
{
|
{
|
||||||
Assert(lLow <= lHigh);
|
Assert(iLow <= iHigh);
|
||||||
|
|
||||||
unsigned int maxAcceptable;
|
unsigned int maxAcceptable;
|
||||||
unsigned int x = iHigh - iLow + 1;
|
unsigned int x = iHigh - iLow + 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user