mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-12-30 03:32:58 +00:00
debugwaypoints: show Last Safe Lap and Last Safe Cheat Check
This commit is contained in:
parent
d63b89e585
commit
f944161d82
1 changed files with 2 additions and 0 deletions
|
|
@ -5574,6 +5574,7 @@ static void K_DrawWaypointDebugger(void)
|
|||
put("Next Waypoint ID:", "{}{}", K_GetWaypointID(stplyr->nextwaypoint), ((stplyr->pflags & PF_WRONGWAY) ? " (WRONG WAY)" : ""));
|
||||
put("Respawn Waypoint ID:", "{}", K_GetWaypointID(stplyr->respawn.wp));
|
||||
put("Finishline Distance:", "{}", stplyr->distancetofinish);
|
||||
put("Last Safe Lap:", "{}", stplyr->lastsafelap);
|
||||
|
||||
if (numcheatchecks > 0)
|
||||
{
|
||||
|
|
@ -5581,6 +5582,7 @@ static void K_DrawWaypointDebugger(void)
|
|||
put("Cheat Check:", "{} / {} (Can finish)", stplyr->cheatchecknum, numcheatchecks);
|
||||
else
|
||||
put("Cheat Check:", "{} / {}", stplyr->cheatchecknum, numcheatchecks);
|
||||
put("Last Safe Cheat Check:", "{}", stplyr->lastsafecheatcheck);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue