From bd1ffe631589615682c38c57b9db6c9be8986dbf Mon Sep 17 00:00:00 2001 From: Thorsten Otto Date: Thu, 14 Mar 2024 14:52:17 +0100 Subject: [PATCH] Use windowed mode by default on MiNT --- common/settings.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/common/settings.cpp b/common/settings.cpp index bff02b6d..55fb7824 100644 --- a/common/settings.cpp +++ b/common/settings.cpp @@ -20,7 +20,11 @@ SettingsClass::SettingsClass() */ Video.WindowWidth = 640; Video.WindowHeight = 400; +#ifdef __MINT__ + Video.Windowed = true; +#else Video.Windowed = false; +#endif Video.Width = 0; Video.Height = 0; Video.Boxing = true;