update text format text

This commit is contained in:
CrackedPixel 2024-08-07 18:39:04 -05:00
parent 9c2ba3bfb7
commit 6a71f38dc0

View File

@ -52,7 +52,9 @@ int main(void)
DrawText(TextFormat("Lives: %02i", lives), 200, 160, 40, BLUE); 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(); EndDrawing();
//---------------------------------------------------------------------------------- //----------------------------------------------------------------------------------