diff options
author | bunnei <bunneidev@gmail.com> | 2022-03-26 09:34:29 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2022-03-26 09:34:29 +0100 |
commit | 3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5 (patch) | |
tree | d506d9012c40a6e3c63375eb5ebf5be34ac68e7c /src | |
parent | hle: kernel: k_code_memory: Fix usage of KPageLinkedList to use physical address space. (diff) | |
download | yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.gz yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.bz2 yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.lz yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.xz yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.zst yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.zip |
Diffstat (limited to '')
-rw-r--r-- | src/core/hle/kernel/svc.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc.cpp b/src/core/hle/kernel/svc.cpp index 3daac6747..4a2115e2d 100644 --- a/src/core/hle/kernel/svc.cpp +++ b/src/core/hle/kernel/svc.cpp @@ -1408,8 +1408,8 @@ static ResultCode UnmapProcessMemory(Core::System& system, VAddr dst_address, Ha } static ResultCode CreateCodeMemory(Core::System& system, Handle* out, VAddr address, size_t size) { - LOG_TRACE(Kernel_SVC, "called, handle_out={}, address=0x{:X}, size=0x{:X}", - static_cast<void*>(out), address, size); + LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, size=0x{:X}", address, size); + // Get kernel instance. auto& kernel = system.Kernel(); |