diff options
author | TheKoopaKingdom <thekoopakingdom@gmail.com> | 2017-04-13 07:18:54 +0200 |
---|---|---|
committer | TheKoopaKingdom <thekoopakingdom@gmail.com> | 2017-06-03 00:28:14 +0200 |
commit | a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7 (patch) | |
tree | 37a7edc6a27eff75c96117203f48c9f1ec640b97 /src/core/hle/service/apt/apt.cpp | |
parent | Optimized messages that were repetitive and added ability for core errors to specify more details optionally. (diff) | |
download | yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.gz yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.bz2 yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.lz yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.xz yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.zst yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.zip |
Diffstat (limited to 'src/core/hle/service/apt/apt.cpp')
-rw-r--r-- | src/core/hle/service/apt/apt.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/core/hle/service/apt/apt.cpp b/src/core/hle/service/apt/apt.cpp index a92abb58f..4c587e3c8 100644 --- a/src/core/hle/service/apt/apt.cpp +++ b/src/core/hle/service/apt/apt.cpp @@ -281,9 +281,8 @@ void CancelParameter(Service::Interface* self) { rb.Push(RESULT_SUCCESS); // No error rb.Push(true); // Set to Success - LOG_WARNING(Service_APT, - "(STUBBED) called check_sender=0x%08X, sender_appid=0x%08X, " - "check_receiver=0x%08X, receiver_appid=0x%08X", + LOG_WARNING(Service_APT, "(STUBBED) called check_sender=0x%08X, sender_appid=0x%08X, " + "check_receiver=0x%08X, receiver_appid=0x%08X", check_sender, sender_appid, check_receiver, receiver_appid); } |