diff options
| author | 2020-11-20 10:50:50 -0800 | |
|---|---|---|
| committer | 2020-11-20 10:50:50 -0800 | |
| commit | 3794c911450761db51fe848aa42eeeded2d78018 (patch) | |
| tree | 526069154d0529ca4ee800d56f2d6aba9676b461 | |
| parent | hle: service: Stub OLSC Initialize and SetSaveDataBackupSettingEnabled functi... (diff) | |
| download | yuzu-3794c911450761db51fe848aa42eeeded2d78018.tar.gz yuzu-3794c911450761db51fe848aa42eeeded2d78018.tar.xz yuzu-3794c911450761db51fe848aa42eeeded2d78018.zip | |
olsc: Move member initialization to after member functions.
Diffstat (limited to '')
| -rw-r--r-- | src/core/hle/service/olsc/olsc.cpp | 4 |
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 | ||
| 45 | private: | 45 | private: |
| 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 | ||
| 65 | void InstallInterfaces(SM::ServiceManager& service_manager) { | 65 | void InstallInterfaces(SM::ServiceManager& service_manager) { |