From 1aa1e62c4d4dc1fff24201ff8eaebcccef6d7646 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Tue, 7 Apr 2020 00:56:07 +1000 Subject: [PATCH] SW: Don't process input at frame rate if ScrollMode2D is true. - ScrollMode2D was running at the frame rate, turning off vsync made it unacceptable. --- source/sw/src/game.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/sw/src/game.cpp b/source/sw/src/game.cpp index 85b6fd8b3..f64cbb813 100644 --- a/source/sw/src/game.cpp +++ b/source/sw/src/game.cpp @@ -2574,8 +2574,9 @@ void RunLevel(void) } } + if (!ScrollMode2D) + getinput(myconnectindex); - getinput(myconnectindex); drawscreen(Player + screenpeek); if (QuitFlag) @@ -3087,7 +3088,7 @@ void getinput(int const playerNum) // If in 2D follow mode, scroll around. if (ScrollMode2D && !Prediction) { - keymove = keymove / 6; + keymove = keymove / 2; if (M_Active()) return;