diff options
author | June McEnroe <june@causal.agency> | 2022-01-23 10:50:08 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2022-01-23 10:50:51 -0500 |
commit | b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1 (patch) | |
tree | a487d9d5b3100ed8fe82e5b6906787622e596a59 /sol.c | |
parent | Only open the ICO file once we have something to output (diff) | |
download | wep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.tar.gz wep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.zip |
Allow screensaver/sleep
Diffstat (limited to 'sol.c')
-rw-r--r-- | sol.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sol.c b/sol.c index 48a61a2..890ad89 100644 --- a/sol.c +++ b/sol.c @@ -327,6 +327,8 @@ int main(int argc, char *argv[]) { if (SDL_Init(SDL_INIT_VIDEO) < 0) err("SDL_Init"); atexit(SDL_Quit); + SDL_SetHint(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "1"); + struct Paths paths; if (assetPaths(&paths) < 0) err("SDL_GetPrefPath"); |