summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2018-12-06 01:40:21 -0500
committerGravatar Lioncash2018-12-06 01:40:23 -0500
commit24f051d7234bf18bc3dd770f3707c1a140688c3f (patch)
treea3d53b27343d6752e472ad44c76e2e5a02b86346 /src
parenthle/service: Remove unnecessary using declarations (diff)
downloadyuzu-24f051d7234bf18bc3dd770f3707c1a140688c3f.tar.gz
yuzu-24f051d7234bf18bc3dd770f3707c1a140688c3f.tar.xz
yuzu-24f051d7234bf18bc3dd770f3707c1a140688c3f.zip
hle/service: Replace log + UNIMPLEMENTED with UNIMPLEMENTED_MSG
Combines the two into one, shortening the amount of code here.
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/service.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/service.cpp b/src/core/hle/service/service.cpp
index f061947f2..d41df3732 100644
--- a/src/core/hle/service/service.cpp
+++ b/src/core/hle/service/service.cpp
@@ -144,8 +144,7 @@ void ServiceFrameworkBase::ReportUnimplementedFunction(Kernel::HLERequestContext
144 } 144 }
145 buf.push_back('}'); 145 buf.push_back('}');
146 146
147 LOG_ERROR(Service, "unknown / unimplemented {}", fmt::to_string(buf)); 147 UNIMPLEMENTED_MSG("Unknown / unimplemented {}", fmt::to_string(buf));
148 UNIMPLEMENTED();
149} 148}
150 149
151void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) { 150void ServiceFrameworkBase::InvokeRequest(Kernel::HLERequestContext& ctx) {