early-access version 3474

main
pineappleEA 2023-03-25 08:43:11 +01:00
parent 98d7980992
commit 31b0581681
2 changed files with 33 additions and 32 deletions

View File

@ -1,7 +1,7 @@
yuzu emulator early access yuzu emulator early access
============= =============
This is the source code for early-access 3473. This is the source code for early-access 3474.
## Legal Notice ## Legal Notice

View File

@ -1616,7 +1616,8 @@ void TextureCache<P>::ForEachImageInRegionGPU(size_t as_id, GPUVAddr gpu_addr, s
return; return;
} }
auto& gpu_page_table = gpu_page_table_storage[*storage_id]; auto& gpu_page_table = gpu_page_table_storage[*storage_id];
ForEachGPUPage(gpu_addr, size, [this, gpu_page_table, &images, gpu_addr, size, func](u64 page) { ForEachGPUPage(gpu_addr, size,
[this, &gpu_page_table, &images, gpu_addr, size, func](u64 page) {
const auto it = gpu_page_table.find(page); const auto it = gpu_page_table.find(page);
if (it == gpu_page_table.end()) { if (it == gpu_page_table.end()) {
if constexpr (BOOL_BREAK) { if constexpr (BOOL_BREAK) {