diff --git a/src/core/hle/service/am/am.cpp b/src/core/hle/service/am/am.cpp index 3eb899bfa..7d29475d7 100644 --- a/src/core/hle/service/am/am.cpp +++ b/src/core/hle/service/am/am.cpp @@ -685,7 +685,7 @@ void GetNumContentInfos(Service::Interface* self) { } else { rb.Push(1); // Number of content infos plus one LOG_WARNING(Service_AM, "(STUBBED) called media_type=%u, title_id=0x%016" PRIx64, - media_type, title_id); + static_cast(media_type), title_id); } } @@ -793,7 +793,7 @@ void BeginImportProgram(Service::Interface* self) { Kernel::g_handle_table.Create(std::get>(sessions)) .Unwrap()); - LOG_WARNING(Service_AM, "(STUBBED) media_type=%u", media_type); + LOG_WARNING(Service_AM, "(STUBBED) media_type=%u", static_cast(media_type)); } void EndImportProgram(Service::Interface* self) {