diff --git a/main.c b/main.c index 6d6f8a6729dc19dbd0b81058fa2cbf719a627d37..c19c804498e075ca45732028f6f49ab127810527 100644 --- a/main.c +++ b/main.c @@ -215,10 +215,10 @@ int fps = GetFPS(); double runtime = GetTime(); int height = GetScreenHeight(); - DrawRectangle(10, GetScreenHeight() - 90, 160, 80, DARKBLUE); - DrawTextEx(ctx.font, TextFormat("fps: %d", fps), (Vector2){ 20, height - 80 }, 20, 0, RAYWHITE); - DrawTextEx(ctx.font, TextFormat("run: %.4f", runtime), (Vector2){ 20, height - 60 }, 20, 0, RAYWHITE); - DrawTextEx(ctx.font, TextFormat("dt: %.4f", delta), (Vector2){ 20, height - 40 }, 20, 0, RAYWHITE); + DrawRectangle(10, height - 75, 150, 65, DARKBLUE); + DrawTextEx(ctx.font, TextFormat("fps: %d", fps), (Vector2){ 15, height - 70 }, 16, 0, RAYWHITE); + DrawTextEx(ctx.font, TextFormat("run: %.4f", runtime), (Vector2){ 15, height - 50 }, 16, 0, RAYWHITE); + DrawTextEx(ctx.font, TextFormat("dt: %.4f", delta), (Vector2){ 15, height - 30 }, 16, 0, RAYWHITE); return 0; }