From 7ea04bb55cfd620bd8b709bc972a4efb43a709a9 Mon Sep 17 00:00:00 2001 From: shinyquagsire23 Date: Sat, 21 Oct 2017 17:24:07 -0600 Subject: [PATCH] Services/AM: Fix log commands --- src/core/hle/service/am/am.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 6aee15e94..d64f66830 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -513,7 +513,7 @@ void QueryAvailableTitleDatabase(Service::Interface* self) { rb.Push(RESULT_SUCCESS); // No error rb.Push(true); - LOG_WARNING(Service_APT, "(STUBBED) media_type=%u", media_type); + LOG_WARNING(Service_AM, "(STUBBED) media_type=%u", media_type); } void CheckContentRights(Service::Interface* self) { @@ -529,7 +529,7 @@ void CheckContentRights(Service::Interface* self) { rb.Push(RESULT_SUCCESS); // No error rb.Push(has_rights); - LOG_WARNING(Service_APT, "(STUBBED) tid=%016" PRIx64 ", content_index=%u", tid, content_index); + LOG_WARNING(Service_AM, "(STUBBED) tid=%016" PRIx64 ", content_index=%u", tid, content_index); } void CheckContentRightsIgnorePlatform(Service::Interface* self) { @@ -545,7 +545,7 @@ void CheckContentRightsIgnorePlatform(Service::Interface* self) { rb.Push(RESULT_SUCCESS); // No error rb.Push(has_rights); - LOG_WARNING(Service_APT, "(STUBBED) tid=%016" PRIx64 ", content_index=%u", tid, content_index); + LOG_WARNING(Service_AM, "(STUBBED) tid=%016" PRIx64 ", content_index=%u", tid, content_index); } void Init() {