From df75189a978ed1af26b3a4894ddc061a1709feb8 Mon Sep 17 00:00:00 2001 From: James William Fletcher <78346668+mrbid@users.noreply.github.com> Date: Mon, 10 Jul 2023 15:20:46 +0100 Subject: [PATCH] Update main.c --- main.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main.c b/main.c index 018e385..6fd113d 100644 --- a/main.c +++ b/main.c @@ -631,14 +631,14 @@ void doPerspective() mIdent(&projection); if(ortho == 1) - mOrtho(&projection, -5.0f, 5.0f, -3.2f, 3.4f, 0.01f, 320.f); + mOrtho(&projection, -5.0f, 5.0f, -3.2f, 3.4f, 2.0f, 320.f); else { if(winw > winh) aspect = ww / wh; else aspect = wh / ww; - mPerspective(&projection, 30.0f, aspect, 0.1f, 320.f); + mPerspective(&projection, 30.0f, aspect, 2.0f, 320.f); } }