소스 검색

Merge pull request #4860 from marler8997/fixDivide0

Avoid divide by 0 in core_custom_frame_control example
pull/4862/head
Ray 1 주 전
committed by GitHub
부모
커밋
001e78014c
No known key found for this signature in database GPG 키 ID: B5690EEEBB952194
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();

불러오는 중...
취소
저장