wadeira / ckSurf

10 stars 10 forks source link

Fix for offset PB diff in center hud #20

Closed sneak-it closed 7 years ago

sneak-it commented 7 years ago

Since the github application sucks and I can't submit a proper PR, I'll put this easy fix here for whenever you push your next commit. When completing a stage, the center HUD displays an improperly formatted SR diff: http://puu.sh/v385n/dfac2e73e1.jpg

misc.sp, Line 3164: Format(sPBest, sizeof(sPBest), "%s", g_szLastPBDifference[client]);

Should be: Format(sPBest, sizeof(sPBest), "%s\t", g_szLastPBDifference[client]);

Cheers!