From a113617c026d00770c0a01b292386bd1857f5a6a Mon Sep 17 00:00:00 2001 From: Steven Fuller Date: Wed, 8 Aug 2001 15:49:59 +0000 Subject: Fixed major bug in TranslatePoint (was accidently loading a value to edx instead of edi). Failed to get anything comprehendible on screen. --- src/kshape.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/kshape.c') diff --git a/src/kshape.c b/src/kshape.c index 1e5d12b..0e95c46 100644 --- a/src/kshape.c +++ b/src/kshape.c @@ -4508,7 +4508,7 @@ static void TranslatePoint(float *source, float *dest, float *matrix) /* Moved to a separate file because I can't figure out the damn syntax! */ __asm__("call TranslatePoint_Asm \n\t" : - : "S" (source), "b" (dest), "d" (matrix) + : "S" (source), "b" (dest), "D" (matrix) ); } -- cgit v1.3