mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-05 15:19:57 +00:00
MemoryManager: Temporary Fix for NVDEC.
This commit is contained in:
parent
835b950f7e
commit
0f4ae3cc52
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ std::optional<GPUVAddr> MemoryManager::FindFreeRange(std::size_t size, std::size
|
|||
}
|
||||
|
||||
u64 available_size{};
|
||||
GPUVAddr gpu_addr{allocate_start};
|
||||
GPUVAddr gpu_addr{start_32bit_address ? 0 : allocate_start};
|
||||
while (gpu_addr + available_size < address_space_size) {
|
||||
if (GetEntry(gpu_addr + available_size) == EntryType::Free) {
|
||||
available_size += page_size;
|
||||
|
|
Loading…
Reference in a new issue