From 63c818ac451b915a5aec90325366795e5148bc87 Mon Sep 17 00:00:00 2001 From: Guldoman Date: Wed, 3 Aug 2022 17:27:33 +0200 Subject: [PATCH] Enable SDL timers --- meson.build | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meson.build b/meson.build index 11d8191..aa9f0a1 100644 --- a/meson.build +++ b/meson.build @@ -108,6 +108,7 @@ if not get_option('source-only') sdl_options += 'use_video=enabled' sdl_options += 'use_atomic=enabled' sdl_options += 'use_threads=enabled' + sdl_options += 'use_timers=enabled' # investigate if this is truly needed # Do not remove before https://github.com/libsdl-org/SDL/issues/5413 is released sdl_options += 'use_events=enabled' @@ -117,7 +118,6 @@ if not get_option('source-only') sdl_options += 'use_video_wayland=auto' # we don't need these - sdl_options += 'use_timers=disabled' sdl_options += 'use_sensor=disabled' sdl_options += 'use_haptic=disabled' sdl_options += 'use_audio=disabled'