This commit is contained in:
Fire Cube 2025-07-05 16:57:48 +02:00
parent 7b1bad93e5
commit 21a956fa47

View file

@ -622,8 +622,8 @@ void load(const std::filesystem::path& path) {
windowWidth = toml::find_or<int>(gpu, "screenWidth", windowWidth);
windowHeight = toml::find_or<int>(gpu, "screenHeight", windowHeight);
internalScreenWidth = toml::find_or<int>(gpu, "internalScreenWidth", internalScreenWidth);
internalScreenHeight = toml::find_or<
int>(gpu, "internalScreenHeight", internalScreenHeight);
internalScreenHeight =
toml::find_or<int>(gpu, "internalScreenHeight", internalScreenHeight);
isNullGpu = toml::find_or<bool>(gpu, "nullGpu", false);
shouldCopyGPUBuffers = toml::find_or<bool>(gpu, "copyGPUBuffers", false);
readbacksEnabled = toml::find_or<bool>(gpu, "readbacks", false);