diff options
author | Lioncash <mathew1800@gmail.com> | 2020-04-23 23:53:23 +0200 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2020-04-23 23:53:26 +0200 |
commit | bed4865981acb4e32f440d46b70212dd4c2cc0fe (patch) | |
tree | 4c177d0a419aadbbae655e2c74745beaa67b089a | |
parent | Merge pull request #3768 from H27CK/cmd-title-fmt (diff) | |
download | yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar.gz yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar.bz2 yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar.lz yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar.xz yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.tar.zst yuzu-bed4865981acb4e32f440d46b70212dd4c2cc0fe.zip |
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 4134acf65..dc5bcc2e5 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -55,9 +55,6 @@ constexpr bool IsValidAddressRange(VAddr address, u64 size) { return address + size > address; } -// 8 GiB -constexpr u64 MAIN_MEMORY_SIZE = 0x200000000; - // Helper function that performs the common sanity checks for svcMapMemory // and svcUnmapMemory. This is doable, as both functions perform their sanitizing // in the same order. |