From ac6c0e73c8f84225403946760d51408d9bbcd7d9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=A1=D1=82=D1=80=D0=B0=D1=85=D0=B8=D1=9A=D0=B0=20=D0=A0?= =?UTF-8?q?=D0=B0=D0=B4=D0=B8=D1=9B?= Date: Fri, 26 Apr 2024 16:58:05 +0200 Subject: [PATCH] Use SDL_WINDOW_FULLSCREEN_DESKTOP to avoid blurriness; update copyright year MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Страхиња Радић --- .gitignore | 1 + README | 2 +- lav-sdl.c | 5 +++-- local.h.in | 2 +- 4 files changed, 6 insertions(+), 4 deletions(-) diff --git a/.gitignore b/.gitignore index 8334265..917d569 100644 --- a/.gitignore +++ b/.gitignore @@ -10,6 +10,7 @@ *.o *.pdf *.ps +*.sig *.swp *.tmp *.did diff --git a/README b/README index 8c07af7..cd3ded2 100644 --- a/README +++ b/README @@ -33,7 +33,7 @@ License ------- lav-sdl - SDL maze solver -Copyright (C) 2023 Strahinya Radich +Copyright (C) 2023-2024 Strahinya Radich This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/lav-sdl.c b/lav-sdl.c index 2a3510f..4c7f5a1 100644 --- a/lav-sdl.c +++ b/lav-sdl.c @@ -1,5 +1,5 @@ /* This program is licensed under the terms of GNU GPL v3 or (at your option) - * any later version. Copyright (C) 2023 Strahinya Radich. + * any later version. Copyright (C) 2023-2024 Strahinya Radich. * See the file LICENSE for exact copyright and license details. */ #include @@ -68,7 +68,7 @@ const char* help_text[] = { "---", "", "This program is licensed under the terms of GNU GPL v3 or (at your", - "option) any later version. Copyright (C) 2023 Strahinya Radich.", + "option) any later version. Copyright (C) 2023-2024 Strahinya Radich.", "See the file LICENSE for exact copyright and license details.", NULL }; @@ -901,6 +901,7 @@ main(int argc, char** argv) if (SDL_CreateWindowAndRenderer(DEFAULT_WIDTH, DEFAULT_HEIGHT, SDL_WINDOW_SHOWN | SDL_WINDOW_MAXIMIZED + | SDL_WINDOW_FULLSCREEN_DESKTOP | SDL_WINDOW_BORDERLESS | SDL_WINDOW_RESIZABLE, &window, &renderer) < 0) diff --git a/local.h.in b/local.h.in index b336c26..010ad29 100644 --- a/local.h.in +++ b/local.h.in @@ -1,5 +1,5 @@ /* This program is licensed under the terms of GNU GPL v3 or (at your option) - * any later version. Copyright (C) 2023 Страхиња Радић. + * any later version. Copyright (C) 2023-2024 Страхиња Радић. * See the file LICENSE for exact copyright and license details. */ #define DATADIR "%DATADIR%" -- 2.45.2