Fix a bug (probably)

This commit is contained in:
Miloslav Ciz 2025-03-06 19:53:29 +01:00
parent ddc4f5b6ad
commit ec084222f1
4 changed files with 14 additions and 19 deletions

View file

@ -144,12 +144,9 @@ struct
} replay;
} LCR_racing;
/**
Gets times of the run in milliseconds.
*/
uint32_t LCR_racingGetRunTimeMS()
uint32_t LCR_timeTicksToMS(uint32_t ticks)
{
return LCR_racing.tick * LCR_RACING_TICK_MS;
return ticks * LCR_RACING_TICK_MS;
}
TPE_Vec3 _LCR_TPE_vec3DividePlain(TPE_Vec3 v, TPE_Unit d)