From 24f051d7234bf18bc3dd770f3707c1a140688c3f Mon Sep 17 00:00:00 2001 From: Lioncash Date: Thu, 6 Dec 2018 01:40:21 -0500 Subject: [PATCH] hle/service: Replace log + UNIMPLEMENTED with UNIMPLEMENTED_MSG Combines the two into one, shortening the amount of code here. --- src/core/hle/service/service.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp index f061947f2b..d41df37325 100644 --- a/src/core/hle/service/service.cpp +++ b/src/core/hle/service/service.cpp @@ -144,8 +144,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext } buf.push_back('}'); - LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf)); - UNIMPLEMENTED(); + UNIMPLEMENTED_MSG("Unknown / unimplemented {}", fmt::to_string(buf)); } void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {