summary refs log tree commit diff
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
parentOnly open the ICO file once we have something to output (diff)
downloadwep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.tar.gz
wep-b0e42f2a22b200f9a7c40e1d4a6eed1da20897d1.zip
Allow screensaver/sleep
-rw-r--r--freecell.c1
-rw-r--r--sol.c2
2 files changed, 3 insertions, 0 deletions
diff --git a/freecell.c b/freecell.c
index dd1cc3d..28b277e 100644
--- a/freecell.c
+++ b/freecell.c
@@ -529,6 +529,7 @@ 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");
 	SDL_SetHint(SDL_HINT_MAC_CTRL_CLICK_EMULATE_RIGHT_CLICK, "1");
 
 	struct Paths paths;
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");