From 8625656510b46e8a46e02d1322facdc57476e51a Mon Sep 17 00:00:00 2001 From: Matt Borgerson Date: Mon, 23 Jan 2023 00:30:40 -0700 Subject: [PATCH] ui/xemu: Define {ctrl,alt}_grab --- ui/xemu.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/ui/xemu.c b/ui/xemu.c index 37f37b18bf..e76d3849ba 100644 --- a/ui/xemu.c +++ b/ui/xemu.c @@ -97,6 +97,8 @@ static int sdl2_num_outputs; static struct sdl2_console *sdl2_console; static SDL_Surface *guest_sprite_surface; static int gui_grab; /* if true, all keyboard/mouse events are grabbed */ +static bool alt_grab; +static bool ctrl_grab; static int gui_saved_grab; static int gui_fullscreen; static int gui_grab_code = KMOD_LALT | KMOD_LCTRL;