summary refs log tree commit diff
path: root/sol.c
diff options
context:
space:
mode:
authorJune McEnroe <june@causal.agency>2022-01-23 10:50:08 -0500
committerJune McEnroe <june@causal.agency>2022-01-23 10:50:51 -0500
commitb0e42f2a22b200f9a7c40e1d4a6eed1da20897d1 (patch)
treea487d9d5b3100ed8fe82e5b6906787622e596a59 /sol.c
parentOnly open the ICO file once we have something to output (diff)
downloadwep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.tar.gz
wep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.zip
Allow screensaver/sleep
Diffstat (limited to '')
-rw-r--r--sol.c2
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");