Use a signed integer to display the score
Some checks failed
CodeQL / Analyze (push) Waiting to run
Build branch / build-all (push) Failing after 18s

This commit is contained in:
smallmodel 2025-01-24 21:39:09 +01:00 committed by GitHub
parent 33855cfbee
commit 7e26814cfa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1219,7 +1219,7 @@ static void SV_Status_f(void) {
ps = SV_GameClientNum(i);
// su44: ps->persistant is not avaible in mohaa
//Com_Printf ("%5i ", ps->persistant[PERS_SCORE]);
Com_Printf("%*u ", colSize[1], ps->stats[STAT_KILLS]);
Com_Printf("%*i ", colSize[1], ps->stats[STAT_KILLS]);
if (cl->state == CS_CONNECTED)
Com_Printf("CNCT ");