From c37d2d448d373ee6aaf6b202fbfacc8283d7e682 Mon Sep 17 00:00:00 2001 From: Ray Date: Mon, 8 Jan 2018 01:03:04 +0100 Subject: [PATCH] Corrected issue with matrices Matrix stack system should be reviewed but, in the meantime, currentMatrix should be reseted in order of 3d to work --- src/rlgl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rlgl.c b/src/rlgl.c index de81fde1b..1c739d45c 100644 --- a/src/rlgl.c +++ b/src/rlgl.c @@ -414,7 +414,7 @@ void rlPushMatrix(void) } stack[stackCounter] = *currentMatrix; -// rlLoadIdentity(); + rlLoadIdentity(); // TODO: Review matrix stack logic! stackCounter++; if (currentMatrixMode == RL_MODELVIEW) useTempBuffer = true;