summaryrefslogtreecommitdiff
path: root/external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch
diff options
context:
space:
mode:
Diffstat (limited to 'external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch')
-rw-r--r--external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch b/external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch
deleted file mode 100644
index ef7217b0e0f7..000000000000
--- a/external/libgltf/patches/walkthrough_mode_affects_orbit_mode_unexpectedly.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -ur libgltf.org/src/Camera.cpp libgltf/src/Camera.cpp
---- libgltf.org/src/Camera.cpp 2014-06-24 17:36:27.870055125 +0200
-+++ libgltf/src/Camera.cpp 2014-06-24 17:36:43.514054463 +0200
-@@ -243,6 +243,8 @@
- if (abs(horizontal) > planar || abs(vertical) > 0.0001)
- {
- bRotateCameraModel = true;
-+ fRotateCameraXSpeed = 0;
-+ fRotateCameraYSpeed = 0;
- float deltaX = (float)(horizontal * fSensitivity * 0.01f);
- float deltaY = (float)(-vertical * fSensitivity * 0.01f);
- AerialViewY += -vertical;