summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index 03d9991b9..b360e7e5f 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -185,7 +185,7 @@ private:
185 void GetOperationMode(Kernel::HLERequestContext& ctx) { 185 void GetOperationMode(Kernel::HLERequestContext& ctx) {
186 IPC::RequestBuilder rb{ctx, 3}; 186 IPC::RequestBuilder rb{ctx, 3};
187 rb.Push(RESULT_SUCCESS); 187 rb.Push(RESULT_SUCCESS);
188 rb.Push(static_cast<u32>(APM::PerformanceMode::Handheld)); 188 rb.Push(static_cast<u8>(OperationMode::Handheld));
189 189
190 LOG_WARNING(Service, "(STUBBED) called"); 190 LOG_WARNING(Service, "(STUBBED) called");
191 } 191 }
@@ -193,7 +193,7 @@ private:
193 void GetPerformanceMode(Kernel::HLERequestContext& ctx) { 193 void GetPerformanceMode(Kernel::HLERequestContext& ctx) {
194 IPC::RequestBuilder rb{ctx, 3}; 194 IPC::RequestBuilder rb{ctx, 3};
195 rb.Push(RESULT_SUCCESS); 195 rb.Push(RESULT_SUCCESS);
196 rb.Push<u32>(0); 196 rb.Push(static_cast<u32>(APM::PerformanceMode::Handheld));
197 197
198 LOG_WARNING(Service, "(STUBBED) called"); 198 LOG_WARNING(Service, "(STUBBED) called");
199 } 199 }