summaryrefslogtreecommitdiffhomepage
path: root/src/core.c
diff options
context:
space:
mode:
authorraysan5 <[email protected]>2020-04-16 13:48:47 +0200
committerraysan5 <[email protected]>2020-04-16 13:48:47 +0200
commitbaf5e02f43086891e182565086b1fc8ab4cec7aa (patch)
tree436017bb0600f08ed5f1d2133d7f5a2004024750 /src/core.c
parent6582084e9be410d940acda2eba5e6589604e958d (diff)
downloadraylib-baf5e02f43086891e182565086b1fc8ab4cec7aa.tar.gz
raylib-baf5e02f43086891e182565086b1fc8ab4cec7aa.zip
Remove comment
Diffstat (limited to 'src/core.c')
-rw-r--r--src/core.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/core.c b/src/core.c
index 2f258f99..58eedbcb 100644
--- a/src/core.c
+++ b/src/core.c
@@ -1321,10 +1321,6 @@ void EndDrawing(void)
CORE.Time.previous = CORE.Time.current;
CORE.Time.frame += waitTime; // Total frame time: update + draw + wait
-
- //SetWindowTitle(FormatText("Update: %f, Draw: %f, Req.Wait: %f, Real.Wait: %f, Total: %f, Target: %f\n",
- // (float)CORE.Time.update, (float)CORE.Time.draw, (float)(CORE.Time.target - (CORE.Time.update + CORE.Time.draw)),
- // (float)waitTime, (float)CORE.Time.frame, (float)CORE.Time.target));
}
}