Merge pull request #852 from morphis/dont-disable-screensaver

sdl: don't prevent screensaver to systems to suspend properly
This commit is contained in:
Simon Fels 2018-08-08 11:28:09 +02:00 committed by GitHub
commit ad128b32d4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -42,6 +42,13 @@ Platform::Platform(
: input_manager_(input_manager),
event_thread_running_(false),
single_window_(single_window) {
// Don't block the screensaver from kicking in. It will be blocked
// by the desktop shell already and we don't have to do this again.
// If we would leave this enabled it will prevent systems from
// suspending correctly.
SDL_SetHint(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "1");
if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_EVENTS) < 0) {
const auto message = utils::string_format("Failed to initialize SDL: %s", SDL_GetError());
BOOST_THROW_EXCEPTION(std::runtime_error(message));