diff options
author | liamwhite <liamwhite@users.noreply.github.com> | 2023-02-12 02:13:54 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-12 02:13:54 +0100 |
commit | fbba6e10bc421aa3a3dc91282814e4d18ac8eb92 (patch) | |
tree | bc4f9a7c3570e734d7bf702e91d2dd8c8717c595 | |
parent | Merge pull request #9777 from vonchenplus/speed_up_video_copy (diff) | |
parent | kernel/svc: Fix undefined info_id (diff) | |
download | yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar.gz yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar.bz2 yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar.lz yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar.xz yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.tar.zst yuzu-fbba6e10bc421aa3a3dc91282814e4d18ac8eb92.zip |
-rw-r--r-- | src/core/hle/kernel/svc/svc_info.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/kernel/svc/svc_info.cpp b/src/core/hle/kernel/svc/svc_info.cpp index 75097c7f9..ad56e2fe6 100644 --- a/src/core/hle/kernel/svc/svc_info.cpp +++ b/src/core/hle/kernel/svc/svc_info.cpp @@ -12,8 +12,8 @@ namespace Kernel::Svc { /// Gets system/memory information for the current process Result GetInfo(Core::System& system, u64* result, InfoType info_id_type, Handle handle, u64 info_sub_id) { - LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", info_id, - info_sub_id, handle); + LOG_TRACE(Kernel_SVC, "called info_id=0x{:X}, info_sub_id=0x{:X}, handle=0x{:08X}", + info_id_type, info_sub_id, handle); u32 info_id = static_cast<u32>(info_id_type); |