From: terencehill Date: Sat, 14 Nov 2020 15:18:05 +0000 (+0100) Subject: Get rid of an useless global X-Git-Tag: xonotic-v0.8.5~674 X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=64b7adb293caf6bd94c5d4d5d04f899a524ffa5e;hp=c7f837c4e37c3887acb0a4463438d433758afab5;p=xonotic%2Fxonotic-data.pk3dir.git Get rid of an useless global --- diff --git a/qcsrc/client/view.qc b/qcsrc/client/view.qc index c3a93cd05..51fbe195e 100644 --- a/qcsrc/client/view.qc +++ b/qcsrc/client/view.qc @@ -382,7 +382,6 @@ void update_mousepos() mousepos.y = bound(0, mousepos.y, vid_conheight); } -float showfps_prevfps; float showfps_prevfps_time; int showfps_framecounter; @@ -396,13 +395,13 @@ void fpscounter_update() showfps_framecounter += 1; if(currentTime - showfps_prevfps_time > STAT(SHOWFPS)) { - showfps_prevfps = showfps_framecounter/(currentTime - showfps_prevfps_time); + float fps = showfps_framecounter / (currentTime - showfps_prevfps_time); showfps_framecounter = 0; showfps_prevfps_time = currentTime; int channel = MSG_C2S; WriteHeader(channel, fpsreport); - WriteShort(channel, bound(0, rint(showfps_prevfps), 65535)); // prevent insane fps values + WriteShort(channel, bound(0, rint(fps), 65535)); // prevent insane fps values } }