From 47b65868f447c2455b61698f965303028ccc2c39 Mon Sep 17 00:00:00 2001 From: kd-11 Date: Sun, 26 Mar 2023 13:02:49 +0300 Subject: [PATCH] Try even lower --- rpcs3/Emu/RSX/VK/vkutils/device.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rpcs3/Emu/RSX/VK/vkutils/device.cpp b/rpcs3/Emu/RSX/VK/vkutils/device.cpp index 042617e6af..3360780f6b 100644 --- a/rpcs3/Emu/RSX/VK/vkutils/device.cpp +++ b/rpcs3/Emu/RSX/VK/vkutils/device.cpp @@ -690,8 +690,8 @@ namespace vk { // GTX970 workaround/hack // The driver reports a full working 4GB of memory which is incorrect. - // Limit to ~3GB to allow vma to avoid running over the headroom of 0.5G. - memory_map.device_local_total_bytes = 3072 * 0x100000; + // Limit to ~2.5GB to allow vma to avoid running over the headroom of 0.5G. + memory_map.device_local_total_bytes = 2560 * 0x100000; } }