From f4a62fdb489c882ff1f277e3b588d8bd762a7b83 Mon Sep 17 00:00:00 2001 From: Amorilia <amorilia@users.sourceforge.net> Date: Sat, 26 Nov 2005 19:41:46 +0000 Subject: [PATCH] Matrix22.Set(...) bugfix --- niflib.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/niflib.h b/niflib.h index 901b572e..a6a73800 100644 --- a/niflib.h +++ b/niflib.h @@ -208,7 +208,7 @@ struct Matrix22 { float m11, float m12, float m21, float m22 ) { - rows[0][2] = m11; rows[0][2] = m12; + rows[0][0] = m11; rows[0][1] = m12; rows[1][0] = m21; rows[1][1] = m22; } //Python Operator Overloads -- GitLab