fix typo
This commit is contained in:
parent
afc5d8765b
commit
4936fa5d59
1 changed files with 1 additions and 1 deletions
|
@ -451,7 +451,7 @@ void GameMainLoop()
|
|||
if (Parameters::Instance.benchmark) {
|
||||
ticks = SDL_GetTicks() - ticks;
|
||||
double fps = FrameCounter * 1000.0 / ticks;
|
||||
fprintf(stderr, "BENCHMARK RESULT: %f fps, %f fpc (%ldms for %ldframes in %ldcycles)\n", fps, GameCycle * 1000.0 / ticks, ticks, FrameCounter, GameCycle);
|
||||
fprintf(stderr, "BENCHMARK RESULT: %f fps, %f cps (%ldms for %ldframes in %ldcycles)\n", fps, GameCycle * 1000.0 / ticks, ticks, FrameCounter, GameCycle);
|
||||
}
|
||||
|
||||
GameCycle = 0;
|
||||
|
|
Loading…
Reference in a new issue