mirror of
https://git.rip/DMCA_FUCKER/re3.git
synced 2024-11-13 00:59:16 +00:00
fixed cargen
# Conflicts: # src/vehicles/CarGen.cpp
This commit is contained in:
parent
f35fd97c76
commit
9cce324316
|
@ -32,7 +32,7 @@ void CCarGenerator::SwitchOff()
|
|||
|
||||
void CCarGenerator::SwitchOn()
|
||||
{
|
||||
m_nUsesRemaining = 255;
|
||||
m_nUsesRemaining = UINT16_MAX;
|
||||
m_nTimer = CalcNextGen();
|
||||
++CTheCarGenerators::CurrentActiveCount;
|
||||
}
|
||||
|
@ -143,10 +143,10 @@ void CCarGenerator::DoInternalProcessing()
|
|||
m_nVehicleHandle = CPools::GetVehiclePool()->GetIndex(pVehicle);
|
||||
/* I don't think this is a correct comparasion */
|
||||
#ifdef FIX_BUGS
|
||||
if (m_nUsesRemaining != 0)
|
||||
if (m_nUsesRemaining < UINT16_MAX)
|
||||
--m_nUsesRemaining;
|
||||
#else
|
||||
if (m_nUsesRemaining < -1)
|
||||
if (m_nUsesRemaining < ~0)
|
||||
--m_nUsesRemaining;
|
||||
#endif
|
||||
m_nTimer = CalcNextGen();
|
||||
|
|
Loading…
Reference in a new issue