fixed matrix sequence in rug.cpp

This commit is contained in:
Zeno Rogue
2019-09-12 22:50:08 +02:00
parent a2073d97a2
commit 76d82d4e9a
+1 -1
View File
@@ -1621,7 +1621,7 @@ void actDraw() {
last_orientation = getOrientation();
else {
transmatrix next_orientation = getOrientation();
apply_rotation(inverse(last_orientation) * next_orientation);
apply_rotation(inverse(next_orientation) * last_orientation);
last_orientation = next_orientation;
}
#endif