diff options
author | Liam <byteslice@airmail.cc> | 2023-10-20 08:41:32 +0200 |
---|---|---|
committer | Liam <byteslice@airmail.cc> | 2023-10-20 08:41:32 +0200 |
commit | 687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4 (patch) | |
tree | 72eddc7b8a1b014a1f53c4a9b2c85da4f1138c17 /src/core | |
parent | kernel: make check fully constexpr for broken msvc constant folding (diff) | |
download | yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.gz yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.bz2 yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.lz yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.xz yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.tar.zst yuzu-687158fe00f7a9ba35d1a62cd914d9dbb5ddeba4.zip |
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/hle/kernel/svc/svc_memory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/kernel/svc/svc_memory.cpp b/src/core/hle/kernel/svc/svc_memory.cpp index 372684094..97f1210de 100644 --- a/src/core/hle/kernel/svc/svc_memory.cpp +++ b/src/core/hle/kernel/svc/svc_memory.cpp @@ -76,7 +76,7 @@ Result MapUnmapMemorySanityChecks(const KPageTable& manager, u64 dst_addr, u64 s } // namespace Result SetMemoryPermission(Core::System& system, u64 address, u64 size, MemoryPermission perm) { - LOG_DEBUG(Kernel_SVC, "called, address=0x{:016X}, size=0x{:X}, perm=0x{:08X", address, size, + LOG_DEBUG(Kernel_SVC, "called, address=0x{:016X}, size=0x{:X}, perm=0x{:08X}", address, size, perm); // Validate address / size. |