From 20dde9fabcd544d51e74e2f8ad17cac76af5de03 Mon Sep 17 00:00:00 2001 From: Mitchell Richters Date: Mon, 6 Jun 2022 18:24:35 +1000 Subject: [PATCH] - Force synchronised input when `cl_capfps` is true. --- source/core/inputstate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/core/inputstate.h b/source/core/inputstate.h index 4fadf21bd..4782fb79f 100644 --- a/source/core/inputstate.h +++ b/source/core/inputstate.h @@ -108,7 +108,7 @@ extern bool gamesetinput; inline bool SyncInput() { - return gamesetinput || cl_syncinput; + return gamesetinput || cl_syncinput || cl_capfps; } inline float backendinputscale()