From 0b3bf9bb283483036b3259c860f20a721c29ad96 Mon Sep 17 00:00:00 2001 From: Lightling Date: Sat, 19 Mar 2022 14:02:39 -0400 Subject: [PATCH] patch --- Camera.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Camera.cpp b/Camera.cpp index 29820ad..6174f67 100644 --- a/Camera.cpp +++ b/Camera.cpp @@ -95,8 +95,8 @@ void Camera::ReadInput(float _dt) if (input.KeyDown('S')) moveLong -= 1.0f; if (input.KeyDown('D')) moveLat += 1.0f; if (input.KeyDown('A')) moveLat -= 1.0f; - if (input.KeyDown(VK_SPACE)) moveVert += 1.0f; - if (input.KeyDown('X')) moveVert -= 1.0f; + if (input.KeyDown('E')) moveVert += 1.0f; + if (input.KeyDown('Q')) moveVert -= 1.0f; if (input.KeyDown(VK_SHIFT)) modify *= 2.0f; if (input.KeyDown(VK_CONTROL)) modify /= 2.0f;