From cdb8e5b94e8bc2e3109b2342615bbc23edf29fb2 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 4 Aug 2020 16:30:20 +1000 Subject: [PATCH] - do these in the order that `processinput()` does them in. --- source/games/duke/src/input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/games/duke/src/input.cpp b/source/games/duke/src/input.cpp index 491f53b5b..efc93e7e3 100644 --- a/source/games/duke/src/input.cpp +++ b/source/games/duke/src/input.cpp @@ -1261,8 +1261,8 @@ void GetInput() if (!cl_syncinput) { // Do these in the same order as the old code. - applylook(myconnectindex, scaleAdjust, input.q16avel); calcviewpitch(p, scaleAdjust); + applylook(myconnectindex, scaleAdjust, input.q16avel); sethorizon(myconnectindex, loc.bits, scaleAdjust, true, input.q16horz); } }