summaryrefslogtreecommitdiff
path: root/src/core/hle/service/apt
diff options
context:
space:
mode:
authorGravatar TheKoopaKingdom2017-04-13 01:18:54 -0400
committerGravatar TheKoopaKingdom2017-06-02 18:28:14 -0400
commita8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7 (patch)
tree37a7edc6a27eff75c96117203f48c9f1ec640b97 /src/core/hle/service/apt
parentOptimized messages that were repetitive and added ability for core errors to ... (diff)
downloadyuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.gz
yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.tar.xz
yuzu-a8aef599e02e336f9ecb8d5cfc50aa856ea0a1c7.zip
Created a whitelist of system archives to prevent false positives creating dialogs.
Diffstat (limited to 'src/core/hle/service/apt')
-rw-r--r--src/core/hle/service/apt/apt.cpp5
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) {
281 rb.Push(RESULT_SUCCESS); // No error 281 rb.Push(RESULT_SUCCESS); // No error
282 rb.Push(true); // Set to Success 282 rb.Push(true); // Set to Success
283 283
284 LOG_WARNING(Service_APT, 284 LOG_WARNING(Service_APT, "(STUBBED) called check_sender=0x%08X, sender_appid=0x%08X, "
285 "(STUBBED) called check_sender=0x%08X, sender_appid=0x%08X, " 285 "check_receiver=0x%08X, receiver_appid=0x%08X",
286 "check_receiver=0x%08X, receiver_appid=0x%08X",
287 check_sender, sender_appid, check_receiver, receiver_appid); 286 check_sender, sender_appid, check_receiver, receiver_appid);
288} 287}
289 288