mirror of
https://github.com/GTAmodding/re3.git
synced 2024-11-15 08:18:59 +00:00
fix hotring flap stat line
This commit is contained in:
parent
9f0a96ac89
commit
8a114514d9
1 changed files with 4 additions and 0 deletions
|
@ -1229,7 +1229,11 @@ CStats::ConstructStatLine(int rowIdx)
|
|||
FASTEST_TIME(20, "STFT_21");
|
||||
|
||||
if (FastestTimes[21])
|
||||
#ifdef FIX_BUGS
|
||||
STAT_LINE_1(float, "STFT_22", Floor(FastestTimes[21] / 10) / 100, 1);
|
||||
#else
|
||||
STAT_LINE_1(float, "STFT_22", FastestTimes[21] / 1000, 1);
|
||||
#endif
|
||||
|
||||
if (TopShootingRangeScore > 0.0f)
|
||||
STAT_LINE_1(int, "TOP_SHO", TopShootingRangeScore, 0);
|
||||
|
|
Loading…
Reference in a new issue