diff options
author | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-17 09:55:07 +0300 |
---|---|---|
committer | Jaakko Keränen <jaakko.keranen@iki.fi> | 2020-08-17 09:55:07 +0300 |
commit | 6a550da2b01921e66f49badff11ac6ab9b88cd21 (patch) | |
tree | 07e5483943f6aff06204d1dc01c7a8c5bc9d466e /src/main.c | |
parent | 38fa85bae271de5cfb1c5b7137fb3de0e6a07cd1 (diff) |
Minor tweaks
Don’t disable screensaver, and the default site icon should be “no icon”.
Diffstat (limited to 'src/main.c')
-rw-r--r-- | src/main.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -22,6 +22,7 @@ int main(int argc, char **argv) { | |||
22 | init_Foundation(); | 22 | init_Foundation(); |
23 | printf("Lagrange: A Beautiful Gemini Client\n"); | 23 | printf("Lagrange: A Beautiful Gemini Client\n"); |
24 | /* Initialize SDL. */ | 24 | /* Initialize SDL. */ |
25 | SDL_SetHint(SDL_HINT_VIDEO_ALLOW_SCREENSAVER, "1"); | ||
25 | if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)) { | 26 | if (SDL_Init(SDL_INIT_VIDEO | SDL_INIT_AUDIO | SDL_INIT_TIMER)) { |
26 | fprintf(stderr, "SDL init failed: %s\n", SDL_GetError()); | 27 | fprintf(stderr, "SDL init failed: %s\n", SDL_GetError()); |
27 | return -1; | 28 | return -1; |