Преглед изворни кода

svc: Remove unused variable

Since the VMM refactor, this is no longer used or needed.
Lioncash пре 6 година
родитељ
комит
bed4865981
1 измењених фајлова са 0 додато и 3 уклоњено
  1. 0 3
      src/core/hle/kernel/svc.cpp

+ 0 - 3
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.