We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b137cc3 commit fcee914Copy full SHA for fcee914
1 file changed
src_rebuild/Game/C/cutrecorder.c
@@ -200,12 +200,20 @@ void CutRec_Draw()
200
PrintString(text, 5, 215);
201
}
202
203
- if (gAutoTestStats[gCutsceneChaseAutoTest].numHitCars > 0)
+ if(PingBufferPos >= MAX_REPLAY_PINGS-1)
204
SetTextColour(128, 0, 0);
205
206
- sprintf(text, "Hit cars: %d", gAutoTestStats[gCutsceneChaseAutoTest].numHitCars);
+ sprintf(text, "Pings: %d", PingBufferPos);
207
PrintString(text, 5, 205);
208
209
+ SetTextColour(128, 128, 128);
210
+
211
+ if (gAutoTestStats[gCutsceneChaseAutoTest].numHitCars > 0)
212
+ SetTextColour(128, 0, 0);
213
214
+ sprintf(text, "Hit cars: %d", gAutoTestStats[gCutsceneChaseAutoTest].numHitCars);
215
+ PrintString(text, 120, 205);
216
217
if(gAutoTestStats[gCutsceneChaseAutoTest].stuck)
218
{
219
0 commit comments