summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-19 01:55:46 +0200
committerLioncash <mathew1800@gmail.com>2018-07-19 01:55:46 +0200
commit72207577b2b3b769b555293867d03308f20e0a7f (patch)
tree64b09e5ef5bb1000cb7f71c780a3e1dde5160790 /src/core
parentMerge pull request #683 from DarkLordZach/touch (diff)
downloadyuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar.gz
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar.bz2
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar.lz
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar.xz
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.tar.zst
yuzu-72207577b2b3b769b555293867d03308f20e0a7f.zip
Diffstat (limited to 'src/core')
-rw-r--r--src/core/memory.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/core/memory.cpp b/src/core/memory.cpp
index 190ccc25c..a18e27da0 100644
--- a/src/core/memory.cpp
+++ b/src/core/memory.cpp
@@ -115,11 +115,6 @@ static std::set<MemoryHookPointer> GetSpecialHandlers(const PageTable& page_tabl
return result;
}
-static std::set<MemoryHookPointer> GetSpecialHandlers(VAddr vaddr, u64 size) {
- const PageTable& page_table = Core::CurrentProcess()->vm_manager.page_table;
- return GetSpecialHandlers(page_table, vaddr, size);
-}
-
/**
* Gets a pointer to the exact memory at the virtual address (i.e. not page aligned)
* using a VMA from the current process
@@ -587,8 +582,6 @@ void ZeroBlock(const Kernel::Process& process, const VAddr dest_addr, const size
size_t page_index = dest_addr >> PAGE_BITS;
size_t page_offset = dest_addr & PAGE_MASK;
- static const std::array<u8, PAGE_SIZE> zeros = {};
-
while (remaining_size > 0) {
const size_t copy_amount =
std::min(static_cast<size_t>(PAGE_SIZE) - page_offset, remaining_size);