diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-06-20 15:55:01 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-20 15:55:01 +0200 |
commit | 6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd (patch) | |
tree | 6f071d6bc649d237d01baccb4ca614aaeb381922 /src/video_core | |
parent | Merge pull request #10825 from 8bitDream/vcpkg-zlib (diff) | |
parent | Use current GPU address when unmapping GPU pages, not the base (diff) | |
download | yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar.gz yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar.bz2 yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar.lz yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar.xz yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.tar.zst yuzu-6d12e7320b14c8fa50fc584a3ed6d363a5d2a2fd.zip |
Diffstat (limited to 'src/video_core')
-rw-r--r-- | src/video_core/memory_manager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/video_core/memory_manager.cpp b/src/video_core/memory_manager.cpp index 7b2cde7a7..b2f7e160a 100644 --- a/src/video_core/memory_manager.cpp +++ b/src/video_core/memory_manager.cpp @@ -111,7 +111,7 @@ GPUVAddr MemoryManager::PageTableOp(GPUVAddr gpu_addr, [[maybe_unused]] VAddr cp [[maybe_unused]] const auto current_entry_type = GetEntry<false>(current_gpu_addr); SetEntry<false>(current_gpu_addr, entry_type); if (current_entry_type != entry_type) { - rasterizer->ModifyGPUMemory(unique_identifier, gpu_addr, page_size); + rasterizer->ModifyGPUMemory(unique_identifier, current_gpu_addr, page_size); } if constexpr (entry_type == EntryType::Mapped) { const VAddr current_cpu_addr = cpu_addr + offset; @@ -134,7 +134,7 @@ GPUVAddr MemoryManager::BigPageTableOp(GPUVAddr gpu_addr, [[maybe_unused]] VAddr [[maybe_unused]] const auto current_entry_type = GetEntry<true>(current_gpu_addr); SetEntry<true>(current_gpu_addr, entry_type); if (current_entry_type != entry_type) { - rasterizer->ModifyGPUMemory(unique_identifier, gpu_addr, big_page_size); + rasterizer->ModifyGPUMemory(unique_identifier, current_gpu_addr, big_page_size); } if constexpr (entry_type == EntryType::Mapped) { const VAddr current_cpu_addr = cpu_addr + offset; |