diff options
Diffstat (limited to 'src/utils/sdl2helper.cpp')
-rw-r--r-- | src/utils/sdl2helper.cpp | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/src/utils/sdl2helper.cpp b/src/utils/sdl2helper.cpp index 00893ce82..da86d2b41 100644 --- a/src/utils/sdl2helper.cpp +++ b/src/utils/sdl2helper.cpp @@ -31,6 +31,7 @@ PRAGMA48(GCC diagnostic push) PRAGMA48(GCC diagnostic ignored "-Wshadow") #include <SDL_events.h> +#include <SDL_hints.h> #include <SDL_syswm.h> PRAGMA48(GCC diagnostic pop) @@ -210,4 +211,18 @@ bool SDL::PollEvent(SDL_Event *event) SDL_LASTEVENT) > 0; } +void SDL::allowScreenSaver(const bool allow) +{ + if (allow) + { + SDL_SetHint(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "1"); + SDL_EnableScreenSaver(); + } + else + { + SDL_SetHint(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "0"); + SDL_DisableScreenSaver(); + } +} + #endif // USE_SDL2 |