* Decompile LargeFeature, LargeCaveFeature. Add in game for testing.

* Rename Random::nextTLong to Random::nextLong
This commit is contained in:
iProgramInCpp
2023-08-04 21:48:57 +03:00
parent 89c7adbbe5
commit 7d331e76c7
10 changed files with 300 additions and 6 deletions

View File

@@ -97,7 +97,7 @@ double Random::genrand_real2()
return double(genrand_int32()) * (1.0 / 4294967296.0);
}
TLong Random::nextTLong()
TLong Random::nextLong()
{
return TLong(genrand_int32() >> 1);
}