소스 검색

Merge pull request #3778 from lioncash/unused-var

svc: Remove unused variable
Rodrigo Locatti 6 년 전
부모
커밋
db3dcb2f64
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.