diff options
author | Lioncash <mathew1800@gmail.com> | 2018-12-27 02:15:26 +0100 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2018-12-27 02:15:29 +0100 |
commit | 1392597ede66a75b738772d678cf61d614c22679 (patch) | |
tree | c7577b967478795faa0cd2b7126a5bd9eef3b905 | |
parent | Merge pull request #1947 from lioncash/init (diff) | |
download | yuzu-1392597ede66a75b738772d678cf61d614c22679.tar yuzu-1392597ede66a75b738772d678cf61d614c22679.tar.gz yuzu-1392597ede66a75b738772d678cf61d614c22679.tar.bz2 yuzu-1392597ede66a75b738772d678cf61d614c22679.tar.lz yuzu-1392597ede66a75b738772d678cf61d614c22679.tar.xz yuzu-1392597ede66a75b738772d678cf61d614c22679.tar.zst yuzu-1392597ede66a75b738772d678cf61d614c22679.zip |
-rw-r--r-- | src/core/hle/kernel/vm_manager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/core/hle/kernel/vm_manager.cpp b/src/core/hle/kernel/vm_manager.cpp index f39e096ca..10ad94aa6 100644 --- a/src/core/hle/kernel/vm_manager.cpp +++ b/src/core/hle/kernel/vm_manager.cpp @@ -190,6 +190,7 @@ VMManager::VMAIter VMManager::Unmap(VMAIter vma_handle) { vma.type = VMAType::Free; vma.permissions = VMAPermission::None; vma.state = MemoryState::Unmapped; + vma.attribute = MemoryAttribute::None; vma.backing_block = nullptr; vma.offset = 0; |