Merge pull request #3778 from lioncash/unused-var

svc: Remove unused variable
This commit is contained in:
Rodrigo Locatti 2020-04-23 21:47:24 -03:00 committed by GitHub
commit db3dcb2f64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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.