From eea17a4e32eb72dcfea76a8f55f0e7f3d67ed473 Mon Sep 17 00:00:00 2001 From: Crow-bar Date: Sat, 9 Apr 2022 17:28:09 +0300 Subject: [PATCH] Matrix_CreateFromEntity ASM BUG --- public/matrixlib.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/public/matrixlib.c b/public/matrixlib.c index ef4c1415..49f710f0 100644 --- a/public/matrixlib.c +++ b/public/matrixlib.c @@ -261,7 +261,7 @@ void Matrix3x4_FromOriginQuat( matrix3x4 out, const vec4_t quaternion, const vec void Matrix3x4_CreateFromEntity( matrix3x4 out, const vec3_t angles, const vec3_t origin, float scale ) { -#if XASH_PSP /* performance not tested */ +#if 0/*XASH_PSP*/ /* performance not tested */ /* BUG */ if( angles[ROLL] ) { __asm__ ( @@ -803,7 +803,7 @@ void Matrix4x4_FromOriginQuat( matrix4x4 out, const vec4_t quaternion, const vec void Matrix4x4_CreateFromEntity( matrix4x4 out, const vec3_t angles, const vec3_t origin, float scale ) { -#if XASH_PSP /* performance not tested */ +#if 0/*XASH_PSP*/ /* performance not tested */ /* BUG */ if( angles[ROLL] ) { __asm__ (