1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-17 18:59:59 +00:00

fixed matrix sequence in rug.cpp

This commit is contained in:
Zeno Rogue 2019-06-28 10:00:37 +02:00
parent a2073d97a2
commit 76d82d4e9a

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