diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-05-23 15:42:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-23 15:42:39 +0200 |
commit | 09ed5ec6657ac74760f0c15c61cb17c247031fda (patch) | |
tree | d1bf05aece40ffc70a59e9b1447ccea4b759449a /src | |
parent | Merge pull request #10386 from german77/high (diff) | |
parent | Limit the device access memory to 4 GB (diff) | |
download | yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar.gz yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar.bz2 yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar.lz yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar.xz yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.tar.zst yuzu-09ed5ec6657ac74760f0c15c61cb17c247031fda.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/video_core/vulkan_common/vulkan_device.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/video_core/vulkan_common/vulkan_device.cpp b/src/video_core/vulkan_common/vulkan_device.cpp index f6e6f2736..c0b2b3e17 100644 --- a/src/video_core/vulkan_common/vulkan_device.cpp +++ b/src/video_core/vulkan_common/vulkan_device.cpp @@ -1034,7 +1034,7 @@ void Device::CollectPhysicalMemoryInfo() { } const s64 available_memory = static_cast<s64>(device_access_memory - device_initial_usage); device_access_memory = static_cast<u64>(std::max<s64>( - std::min<s64>(available_memory - 8_GiB, 4_GiB), static_cast<s64>(local_memory))); + std::min<s64>(available_memory - 8_GiB, 4_GiB), std::min<s64>(local_memory, 4_GiB))); } void Device::CollectToolingInfo() { |