From 8bdfee25871775d8c0ce6a99b2bdbfe504a0a87f Mon Sep 17 00:00:00 2001 From: Dregu Date: Thu, 30 Nov 2023 19:59:01 +0200 Subject: [PATCH] fix sticky pause input? --- src/injected/ui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/injected/ui.cpp b/src/injected/ui.cpp index f9fc14c35..910ffa6fb 100644 --- a/src/injected/ui.cpp +++ b/src/injected/ui.cpp @@ -9388,7 +9388,7 @@ set_callback(function() end, ON.POST_GAME_LOOP) set_callback(function() - if exports.paused and not exports.skip then + if test_mask(exports.type, 0xc0) and exports.paused and not exports.skip then return true end end, ON.PRE_PROCESS_INPUT)