diff options
author | german77 <[email protected]> | 2022-11-26 19:08:44 -0600 |
---|---|---|
committer | german77 <[email protected]> | 2022-11-27 11:09:40 -0600 |
commit | 7d8095d944f4d3234b67fded9dba0a0ff61f6056 (patch) | |
tree | 462623cf46f3b48f72250cf5d23a7f55fb3877d7 /src/yuzu/main.h | |
parent | 3ab8d9ac7c1fac58de314265f8936336d1f7d829 (diff) | |
download | yuzu-mainline-7d8095d944f4d3234b67fded9dba0a0ff61f6056.tar.gz yuzu-mainline-7d8095d944f4d3234b67fded9dba0a0ff61f6056.zip |
input_common: Pump sdl events from main thread
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index 6a9992d05..4f9c3b450 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -353,6 +353,7 @@ private: void UpdateGPUAccuracyButton(); void UpdateStatusButtons(); void UpdateUISettings(); + void UpdateInputDrivers(); void HideMouseCursor(); void ShowMouseCursor(); void CenterMouseCursor(); @@ -404,6 +405,7 @@ private: bool auto_muted = false; QTimer mouse_hide_timer; QTimer mouse_center_timer; + QTimer update_input_timer; QString startup_icon_theme; bool os_dark_mode = false; |