未验证 提交 ad128b32 编写于 作者: S Simon Fels 提交者: GitHub

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

sdl: don't prevent screensaver to systems to suspend properly
......@@ -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));
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册