early-access version 1805
This commit is contained in:
parent
76f4c32ced
commit
abcdc84bad
2 changed files with 9 additions and 1 deletions
|
@ -1,7 +1,7 @@
|
||||||
yuzu emulator early access
|
yuzu emulator early access
|
||||||
=============
|
=============
|
||||||
|
|
||||||
This is the source code for early-access 1804.
|
This is the source code for early-access 1805.
|
||||||
|
|
||||||
## Legal Notice
|
## 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}",
|
LOG_DEBUG(Service_NVDRV, "remap entry, offset=0x{:X} handle=0x{:X} pages=0x{:X}",
|
||||||
entry.offset, entry.nvmap_handle, entry.pages);
|
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)};
|
const auto object{nvmap_dev->GetObject(entry.nvmap_handle)};
|
||||||
if (!object) {
|
if (!object) {
|
||||||
LOG_CRITICAL(Service_NVDRV, "invalid nvmap_handle={:X}", entry.nvmap_handle);
|
LOG_CRITICAL(Service_NVDRV, "invalid nvmap_handle={:X}", entry.nvmap_handle);
|
||||||
|
|
Loading…
Reference in a new issue