summaryrefslogtreecommitdiffstats
path: root/src/core/hle/kernel/svc.cpp
diff options
context:
space:
mode:
authortech-ticks <techticksdev@gmail.com>2022-04-08 21:31:56 +0200
committertech-ticks <techticksdev@gmail.com>2022-04-09 13:29:19 +0200
commit3b91d213b172a0f66ba421d4583f1bf1a3dbdca6 (patch)
treeb6c7d389b3217543cf2b40794bb3c15934039166 /src/core/hle/kernel/svc.cpp
parentMerge pull request #8162 from german77/bombslinger (diff)
downloadyuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar.gz
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar.bz2
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar.lz
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar.xz
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.tar.zst
yuzu-3b91d213b172a0f66ba421d4583f1bf1a3dbdca6.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/kernel/svc.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp
index 976d63234..0c86435b5 100644
--- a/src/core/hle/kernel/svc.cpp
+++ b/src/core/hle/kernel/svc.cpp
@@ -1713,7 +1713,8 @@ static ResultCode UnmapProcessCodeMemory(Core::System& system, Handle process_ha
return ResultInvalidMemoryRegion;
}
- return page_table.UnmapCodeMemory(dst_address, src_address, size);
+ return page_table.UnmapCodeMemory(dst_address, src_address, size,
+ KPageTable::ICacheInvalidationStrategy::InvalidateAll);
}
/// Exits the current process