reduce noise from FPS counter

This commit is contained in:
Jorj Bauer 2017-02-27 08:11:59 -05:00
parent 6664d8b323
commit 368b385ccf

View File

@ -16,7 +16,7 @@
#include "timeutil.h" #include "timeutil.h"
//#define SHOWFPS #define SHOWFPS
//#define SHOWPC //#define SHOWPC
//#define DEBUGCPU //#define DEBUGCPU
//#define SHOWMEMPAGE //#define SHOWMEMPAGE
@ -264,10 +264,8 @@ int main(int argc, char *argv[])
char buf[25]; char buf[25];
sprintf(buf, "%lu FPS", loopCount / lenSecs); sprintf(buf, "%lu FPS", loopCount / lenSecs);
g_display->debugMsg(buf); g_display->debugMsg(buf);
if (lenSecs >= 60) { startAt = time(NULL);
startAt = time(NULL); loopCount = 0;
loopCount = 0;
}
} }
#endif #endif
#ifdef SHOWPC #ifdef SHOWPC