Enable SDL timers

This commit is contained in:
Guldoman
2022-08-03 17:28:43 +02:00
parent 4db71836af
commit 63c818ac45
+1 -1
View File
@@ -108,6 +108,7 @@ if not get_option('source-only')
sdl_options += 'use_video=enabled' sdl_options += 'use_video=enabled'
sdl_options += 'use_atomic=enabled' sdl_options += 'use_atomic=enabled'
sdl_options += 'use_threads=enabled' sdl_options += 'use_threads=enabled'
sdl_options += 'use_timers=enabled'
# investigate if this is truly needed # investigate if this is truly needed
# Do not remove before https://github.com/libsdl-org/SDL/issues/5413 is released # Do not remove before https://github.com/libsdl-org/SDL/issues/5413 is released
sdl_options += 'use_events=enabled' sdl_options += 'use_events=enabled'
@@ -117,7 +118,6 @@ if not get_option('source-only')
sdl_options += 'use_video_wayland=auto' sdl_options += 'use_video_wayland=auto'
# we don't need these # we don't need these
sdl_options += 'use_timers=disabled'
sdl_options += 'use_sensor=disabled' sdl_options += 'use_sensor=disabled'
sdl_options += 'use_haptic=disabled' sdl_options += 'use_haptic=disabled'
sdl_options += 'use_audio=disabled' sdl_options += 'use_audio=disabled'