~strahinja/lav-sdl

ac6c0e73c8f84225403946760d51408d9bbcd7d9 — Страхиња Радић 4 months ago 45a70a0
Use SDL_WINDOW_FULLSCREEN_DESKTOP to avoid blurriness; update copyright year

Signed-off-by: Страхиња Радић <contact@strahinja.org>
4 files changed, 6 insertions(+), 4 deletions(-)

M .gitignore
M README
M lav-sdl.c
M local.h.in
M .gitignore => .gitignore +1 -0
@@ 10,6 10,7 @@
*.o
*.pdf
*.ps
*.sig
*.swp
*.tmp
*.did

M README => README +1 -1
@@ 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

M lav-sdl.c => lav-sdl.c +3 -2
@@ 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 <SDL.h>


@@ 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)

M local.h.in => local.h.in +1 -1
@@ 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%"