From baf5e02f43086891e182565086b1fc8ab4cec7aa Mon Sep 17 00:00:00 2001 From: raysan5 Date: Thu, 16 Apr 2020 13:48:47 +0200 Subject: [PATCH] Remove comment --- src/core.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/core.c b/src/core.c index 2f258f99e..58eedbcb3 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)); } }