From 1fed43324c5a3f79b31dfc041f41ec0d7878d646 Mon Sep 17 00:00:00 2001 From: Kenix3 Date: Mon, 21 Mar 2022 22:17:51 -0400 Subject: [PATCH] Sets default GFX backend to OpenGL --- libultraship/libultraship/ConfigFile.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libultraship/libultraship/ConfigFile.cpp b/libultraship/libultraship/ConfigFile.cpp index dd4e5bec5..1b4952139 100644 --- a/libultraship/libultraship/ConfigFile.cpp +++ b/libultraship/libultraship/ConfigFile.cpp @@ -71,7 +71,7 @@ namespace Ship { (*this)["WINDOW"]["FULLSCREEN WIDTH"] = std::to_string(1920); (*this)["WINDOW"]["FULLSCREEN HEIGHT"] = std::to_string(1080); (*this)["WINDOW"]["FULLSCREEN"] = std::to_string(false); - (*this)["WINDOW"]["GFX BACKEND"] = ""; + (*this)["WINDOW"]["GFX BACKEND"] = "sdl"; (*this)["KEYBOARD CONTROLLER BINDING 1"][STR(BTN_CRIGHT)] = std::to_string(0x14D); (*this)["KEYBOARD CONTROLLER BINDING 1"][STR(BTN_CLEFT)] = std::to_string(0x14B); @@ -156,4 +156,4 @@ namespace Ship { return File.generate(Val); } -} \ No newline at end of file +}