From 17c22161b06fbde6d377e82408ad01f516c47cff Mon Sep 17 00:00:00 2001 From: MaranBr Date: Sat, 30 Aug 2025 16:20:18 +0200 Subject: [PATCH] Another experiment --- src/video_core/vulkan_common/vulkan_device.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index 97658e4be0..4d228fe5b3 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -1393,7 +1393,7 @@ void Device::CollectPhysicalMemoryInfo() { } const s64 available_memory = static_cast(device_access_memory - device_initial_usage); device_access_memory = static_cast(std::max( - std::min(available_memory - 6_GiB, 3_GiB), std::min(local_memory, 3_GiB))); + std::min(available_memory - 6_GiB, 5_GiB), std::min(local_memory, 5_GiB))); } void Device::CollectToolingInfo() {