aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/cRender.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/cRender.cpp b/src/cRender.cpp
index 148be91..ddc52df 100644
--- a/src/cRender.cpp
+++ b/src/cRender.cpp
@@ -445,7 +445,10 @@ void cRender::printDebugInfo()
{
char dbgtxt[30];
- sprintf(dbgtxt, "R: %f F: %f", ((float)lastRenderTime) / CLOCKS_PER_SEC, 1/getFrametime());
+ double lrt = (double)lastFrameTime / CLOCKS_PER_SEC;
+ double fps = getFrametime()? 1/getFrametime():0;
+
+ sprintf(dbgtxt, "R: %f F: %f", lrt, fps);
drawText(dbgtxt, {0,0}, _COL_BLACK | _COL_WHITE_BG);
}