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);