From 3794c911450761db51fe848aa42eeeded2d78018 Mon Sep 17 00:00:00 2001 From: bunnei Date: Fri, 20 Nov 2020 10:50:50 -0800 Subject: [PATCH] olsc: Move member initialization to after member functions. --- src/core/hle/service/olsc/olsc.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/core/hle/service/olsc/olsc.cpp b/src/core/hle/service/olsc/olsc.cpp index deb23dbde..aad4ca706 100644 --- a/src/core/hle/service/olsc/olsc.cpp +++ b/src/core/hle/service/olsc/olsc.cpp @@ -43,8 +43,6 @@ public: } private: - bool initialized{}; - void Initialize(Kernel::HLERequestContext& ctx) { LOG_WARNING(Service_OLSC, "(STUBBED) called"); @@ -60,6 +58,8 @@ private: IPC::ResponseBuilder rb{ctx, 2}; rb.Push(RESULT_SUCCESS); } + + bool initialized{}; }; void InstallInterfaces(SM::ServiceManager& service_manager) {