End user facing edit

"Starpost" --> "Cheat Check" when using debugwaypoints
This commit is contained in:
VelocitOni 2023-09-01 12:28:47 -04:00
parent 8845700c06
commit 85e6e743d4

View file

@ -5331,9 +5331,9 @@ static void K_DrawWaypointDebugger(void)
if (numcheatchecks > 0)
{
if (stplyr->cheatchecknum == numcheatchecks)
V_DrawString(8, 186, 0, va("Checkpoint: %d / %d (Can finish)", stplyr->cheatchecknum, numcheatchecks));
V_DrawString(8, 186, 0, va("Cheat Check: %d / %d (Can finish)", stplyr->cheatchecknum, numcheatchecks));
else
V_DrawString(8, 186, 0, va("Checkpoint: %d / %d", stplyr->cheatchecknum, numcheatchecks));
V_DrawString(8, 186, 0, va("Cheat Check: %d / %d", stplyr->cheatchecknum, numcheatchecks));
}
}