summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/olsc/olsc.cpp4
1 files 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:
43 } 43 }
44 44
45private: 45private:
46 bool initialized{};
47
48 void Initialize(Kernel::HLERequestContext& ctx) { 46 void Initialize(Kernel::HLERequestContext& ctx) {
49 LOG_WARNING(Service_OLSC, "(STUBBED) called"); 47 LOG_WARNING(Service_OLSC, "(STUBBED) called");
50 48
@@ -60,6 +58,8 @@ private:
60 IPC::ResponseBuilder rb{ctx, 2}; 58 IPC::ResponseBuilder rb{ctx, 2};
61 rb.Push(RESULT_SUCCESS); 59 rb.Push(RESULT_SUCCESS);
62 } 60 }
61
62 bool initialized{};
63}; 63};
64 64
65void InstallInterfaces(SM::ServiceManager& service_manager) { 65void InstallInterfaces(SM::ServiceManager& service_manager) {