From 6d225eb94a63f5515b8313ac096a34c0005445ed Mon Sep 17 00:00:00 2001 From: Zephyron Date: Mon, 20 Jan 2025 16:03:43 +1000 Subject: [PATCH] service: vi: Remove stubbed warning from GetManagerDisplayService - The GetManagerDisplayService function in IApplicationDisplayService is fully implemented, so remove the stubbed warning and change the log level to DEBUG to match its implementation status. --- src/core/hle/service/vi/application_display_service.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/hle/service/vi/application_display_service.cpp b/src/core/hle/service/vi/application_display_service.cpp index 6b0bcb536..a854e37e2 100644 --- a/src/core/hle/service/vi/application_display_service.cpp +++ b/src/core/hle/service/vi/application_display_service.cpp @@ -73,7 +73,7 @@ Result IApplicationDisplayService::GetSystemDisplayService( Result IApplicationDisplayService::GetManagerDisplayService( Out> out_manager_display_service) { - LOG_WARNING(Service_VI, "(STUBBED) called"); + LOG_DEBUG(Service_VI, "called"); *out_manager_display_service = std::make_shared(system, m_container); R_SUCCEED(); }