1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 03:17:34 +00:00

Ports: Fix tuxracer port to use sdl12-compat instead of SDL2

This commit is contained in:
Grigoris Pavlakis 2022-05-28 18:25:25 +03:00 committed by Andreas Kling
parent d10071ce42
commit f578247cdf
7 changed files with 131 additions and 459 deletions

View file

@ -0,0 +1,25 @@
From 8b1b102cd2dce045caf8603aa903bc9265c32cc4 Mon Sep 17 00:00:00 2001
From: Jelle Raaijmakers <jelle@gmta.nl>
Date: Fri, 24 Dec 2021 15:24:16 +0100
Subject: [PATCH 2/3] Disable full screen
---
src/game_config.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/game_config.c b/src/game_config.c
index 6d1e979..f4c1c0c 100644
--- a/src/game_config.c
+++ b/src/game_config.c
@@ -505,7 +505,7 @@ void init_game_configuration()
"# decreasing this number, at the cost of lower image quality." );
INIT_PARAM_BOOL(
- fullscreen, True,
+ fullscreen, False,
"# If true then the game will run in full-screen mode." );
INIT_PARAM_INT(
--
2.36.1