

Divide-Framework
This repository has no backups
This repository's network speed is throttled to 100KB/sec
Upgrade your account to fix these warnings, or use backups.vc for automated backups
Diff Revisions 890 vs 902 for /trunk/Source Code/Rendering/Camera/Camera.cpp
@@ -117,9 +117,8 @@ | |||
117 | 117 | euler = Angle::to_DEGREES(euler); | |
118 | 118 | rotate(euler.yaw, euler.pitch, euler.roll); | |
119 | 119 | } else { | |
120 | - | Quaternion<F32> tempOrientation = q * _orientation; | |
121 | - | tempOrientation.normalize(); | |
122 | - | _orientation = tempOrientation; | |
120 | + | _orientation = q * _orientation; | |
121 | + | _orientation.normalize(); | |
123 | 122 | } | |
124 | 123 | ||
125 | 124 | _viewMatrixDirty = true; |