From b2941dd4b6349721c92fbd47284c9dccf0ce6b6a Mon Sep 17 00:00:00 2001 From: UnknownShadow200 Date: Mon, 25 Mar 2024 07:03:05 +1100 Subject: [PATCH] oops --- src/_GraphicsBase.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/_GraphicsBase.h b/src/_GraphicsBase.h index 9c546fe78..9ca3e628a 100644 --- a/src/_GraphicsBase.h +++ b/src/_GraphicsBase.h @@ -230,7 +230,7 @@ static cc_bool gfx_hadFog; void Gfx_Begin2D(int width, int height) { struct Matrix ortho; // intentionally biased more towards positive Z to reduce 2D clipping issues on the DS - Gfx_CalcOrthoMatrix(&ortho, (float)width, (float)height, -10.0f, 100.0f); + Gfx_CalcOrthoMatrix(&ortho, (float)width, (float)height, -100.0f, 1000.0f); Gfx_LoadMatrix(MATRIX_PROJECTION, &ortho); Gfx_LoadIdentityMatrix(MATRIX_VIEW);