From 3d10ae6d74b96ced930cf818c0926f4a7a43f8bd Mon Sep 17 00:00:00 2001 From: thecozies <79979276+thecozies@users.noreply.github.com> Date: Wed, 27 Mar 2024 12:07:03 -0500 Subject: [PATCH] allow clicks from unfocused --- src/main/main.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/src/main/main.cpp b/src/main/main.cpp index 3e365fb..c8758e7 100644 --- a/src/main/main.cpp +++ b/src/main/main.cpp @@ -44,6 +44,7 @@ ultramodern::gfx_callbacks_t::gfx_data_t create_gfx() { SDL_SetHint(SDL_HINT_GAMECONTROLLER_USE_BUTTON_LABELS, "0"); SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS4_RUMBLE, "1"); SDL_SetHint(SDL_HINT_JOYSTICK_HIDAPI_PS5_RUMBLE, "1"); + SDL_SetHint(SDL_HINT_MOUSE_FOCUS_CLICKTHROUGH, "1"); if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_GAMECONTROLLER) > 0) { exit_error("Failed to initialize SDL2: %s\n", SDL_GetError()); }