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(); //----------------------------------------------------------------------------------