diff options
| author | 2022-03-26 01:34:29 -0700 | |
|---|---|---|
| committer | 2022-03-26 01:34:29 -0700 | |
| commit | 3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5 (patch) | |
| tree | d506d9012c40a6e3c63375eb5ebf5be34ac68e7c /src | |
| parent | hle: kernel: k_code_memory: Fix usage of KPageLinkedList to use physical addr... (diff) | |
| download | yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.gz yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.tar.xz yuzu-3bc0c2a6250756c9ca4b76ce06f68f4f484a5eb5.zip | |
hle: kernel: svc: CreateCodeMemory: Remove log of 'out' host pointer.
- This does not seem terribly useful and is inconsistent with other usage.
Diffstat (limited to 'src')
| -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 | |||
| 1408 | } | 1408 | } |
| 1409 | 1409 | ||
| 1410 | static ResultCode CreateCodeMemory(Core::System& system, Handle* out, VAddr address, size_t size) { | 1410 | static ResultCode CreateCodeMemory(Core::System& system, Handle* out, VAddr address, size_t size) { |
| 1411 | LOG_TRACE(Kernel_SVC, "called, handle_out={}, address=0x{:X}, size=0x{:X}", | 1411 | LOG_TRACE(Kernel_SVC, "called, address=0x{:X}, size=0x{:X}", address, size); |
| 1412 | static_cast<void*>(out), address, size); | 1412 | |
| 1413 | // Get kernel instance. | 1413 | // Get kernel instance. |
| 1414 | auto& kernel = system.Kernel(); | 1414 | auto& kernel = system.Kernel(); |
| 1415 | 1415 | ||