瀏覽代碼

Avoid divide by 0 in core_custom_frame_control example

pull/4860/head
Jonathan Marler 2 週之前
父節點
當前提交
611c43719f
共有 1 個檔案被更改,包括 4 行新增1 行删除
  1. +4
    -1
      examples/core/core_custom_frame_control.c

+ 4
- 1
examples/core/core_custom_frame_control.c 查看文件

@ -95,7 +95,10 @@ int main(void)
DrawText("PRESS SPACE to PAUSE MOVEMENT", 10, GetScreenHeight() - 60, 20, GRAY);
DrawText("PRESS UP | DOWN to CHANGE TARGET FPS", 10, GetScreenHeight() - 30, 20, GRAY);
DrawText(TextFormat("TARGET FPS: %i", targetFPS), GetScreenWidth() - 220, 10, 20, LIME);
DrawText(TextFormat("CURRENT FPS: %i", (int)(1.0f/deltaTime)), GetScreenWidth() - 220, 40, 20, GREEN);
if (deltaTime != 0)
{
DrawText(TextFormat("CURRENT FPS: %i", (int)(1.0f/deltaTime)), GetScreenWidth() - 220, 40, 20, GREEN);
}
EndDrawing();

Loading…
取消
儲存