mirror of
https://github.com/pineappleEA/pineapple-src.git
synced 2024-11-25 16:18:24 -05:00
early-access version 1805
This commit is contained in:
parent
76f4c32ced
commit
abcdc84bad
@ -1,7 +1,7 @@
|
||||
yuzu emulator early access
|
||||
=============
|
||||
|
||||
This is the source code for early-access 1804.
|
||||
This is the source code for early-access 1805.
|
||||
|
||||
## Legal Notice
|
||||
|
||||
|
@ -146,6 +146,14 @@ NvResult nvhost_as_gpu::Remap(const std::vector<u8>& input, std::vector<u8>& out
|
||||
LOG_DEBUG(Service_NVDRV, "remap entry, offset=0x{:X} handle=0x{:X} pages=0x{:X}",
|
||||
entry.offset, entry.nvmap_handle, entry.pages);
|
||||
|
||||
if (entry.nvmap_handle == 0) {
|
||||
// If nvmap handle is null, we should unmap instead.
|
||||
const auto offset{static_cast<GPUVAddr>(entry.offset) << 0x10};
|
||||
const auto size{static_cast<u64>(entry.pages) << 0x10};
|
||||
system.GPU().MemoryManager().Unmap(offset, size);
|
||||
continue;
|
||||
}
|
||||
|
||||
const auto object{nvmap_dev->GetObject(entry.nvmap_handle)};
|
||||
if (!object) {
|
||||
LOG_CRITICAL(Service_NVDRV, "invalid nvmap_handle={:X}", entry.nvmap_handle);
|
||||
|
Loading…
Reference in New Issue
Block a user