From 0d5ff842b4fb0b6f7fb0de4b3929a73c05e104fd Mon Sep 17 00:00:00 2001 From: Dario Manesku Date: Mon, 29 Feb 2016 01:00:14 +0100 Subject: [PATCH] Fix default ortho mtx. --- include/bx/fpumath.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/bx/fpumath.h b/include/bx/fpumath.h index ea2d13d..0dd274f 100644 --- a/include/bx/fpumath.h +++ b/include/bx/fpumath.h @@ -764,7 +764,7 @@ namespace bx inline void mtxOrtho(float* _result, float _left, float _right, float _bottom, float _top, float _near, float _far, float _offset = 0.0f, bool _oglNdc = false) { - return mtxOrthoRh(_result, _left, _right, _bottom, _top, _near, _far, _offset, _oglNdc); + return mtxOrthoLh(_result, _left, _right, _bottom, _top, _near, _far, _offset, _oglNdc); } inline void mtxRotateX(float* _result, float _ax)