From 1fd9536c30275bf98cb7f9167996619df472edbb Mon Sep 17 00:00:00 2001 From: John Connors Date: Thu, 21 Aug 2008 02:36:41 +0100 Subject: [PATCH] Fixed problem with scaling md2s --- file-md2.lisp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/file-md2.lisp b/file-md2.lisp index 30c5f19..71cc4e4 100644 --- a/file-md2.lisp +++ b/file-md2.lisp @@ -276,7 +276,7 @@ (vertex3d* (+ (* (aref (position-of vertex) 0) (x-of scale)) (x-of translation)) (+ (* (aref (position-of vertex) 1) (y-of scale)) (y-of translation)) - (+ (* (aref (position-of vertex) 1) (z-of scale)) (z-of translation)) + (+ (* (aref (position-of vertex) 2) (z-of scale)) (z-of translation)) 1.0))) (values)) -- 2.11.4.GIT