From 5c40fb0cbf683a586d92e43da5002a6c5b3e580a Mon Sep 17 00:00:00 2001 From: wheremyfoodat <44909372+wheremyfoodat@users.noreply.github.com> Date: Sat, 20 Jul 2024 18:37:35 +0300 Subject: [PATCH] Fix oopsie --- include/config.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/config.hpp b/include/config.hpp index 25f352e8..52be1af7 100644 --- a/include/config.hpp +++ b/include/config.hpp @@ -14,7 +14,7 @@ struct EmulatorConfig { #endif // For now, use specialized shaders by default on MacOS as M1 drivers are buggy when using the ubershader, and on Android since mobile GPUs are - // horrible On other platforms we default to ubershader + shadergen fallback for lights + // horrible. On other platforms we default to ubershader + shadergen fallback for lights #if defined(__ANDROID__) || defined(__APPLE__) static constexpr bool ubershaderDefault = false; #else @@ -51,4 +51,4 @@ struct EmulatorConfig { EmulatorConfig(const std::filesystem::path& path); void load(); void save(); -}; \ No newline at end of file +};