From 21a956fa473e7d86d65058f0ac0d7e2b728ab959 Mon Sep 17 00:00:00 2001 From: Fire Cube Date: Sat, 5 Jul 2025 16:57:48 +0200 Subject: [PATCH] clang+ --- src/common/config.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/common/config.cpp b/src/common/config.cpp index de93bd685..8ba0ee45d 100644 --- a/src/common/config.cpp +++ b/src/common/config.cpp @@ -622,8 +622,8 @@ void load(const std::filesystem::path& path) { windowWidth = toml::find_or(gpu, "screenWidth", windowWidth); windowHeight = toml::find_or(gpu, "screenHeight", windowHeight); internalScreenWidth = toml::find_or(gpu, "internalScreenWidth", internalScreenWidth); - internalScreenHeight = toml::find_or< - int>(gpu, "internalScreenHeight", internalScreenHeight); + internalScreenHeight = + toml::find_or(gpu, "internalScreenHeight", internalScreenHeight); isNullGpu = toml::find_or(gpu, "nullGpu", false); shouldCopyGPUBuffers = toml::find_or(gpu, "copyGPUBuffers", false); readbacksEnabled = toml::find_or(gpu, "readbacks", false);