From 6a71f38dc0f823081ef4c9de429e788f5dd99b9a Mon Sep 17 00:00:00 2001 From: CrackedPixel <5776225+CrackedPixel@users.noreply.github.com> Date: Wed, 7 Aug 2024 18:39:04 -0500 Subject: [PATCH] update text format text --- examples/text/text_format_text.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/examples/text/text_format_text.c b/examples/text/text_format_text.c index 0f53f35dc..efa797660 100644 --- a/examples/text/text_format_text.c +++ b/examples/text/text_format_text.c @@ -52,7 +52,9 @@ int main(void) DrawText(TextFormat("Lives: %02i", lives), 200, 160, 40, BLUE); - DrawText(TextFormat("Elapsed Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK); + DrawText(TextFormat("Frame Time: %02.02f ms", GetFrameTime()*1000), 200, 220, 20, BLACK); + + DrawText(TextFormat("Elapsed Time: %02.02f s", GetTime()), 200, 240, 20, BLACK); EndDrawing(); //----------------------------------------------------------------------------------