summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.cpp
diff options
context:
space:
mode:
authorSubv <subv2112@gmail.com>2018-01-15 23:19:32 +0100
committerbunnei <bunneidev@gmail.com>2018-01-17 01:00:32 +0100
commitc5a0408ccca4af6dc27e627a077d5480a3784e84 (patch)
tree2fc577a9889dcf605e21ef66768bd177fe1a5674 /src/core/hle/service/am/applet_oe.cpp
parentAppletOE: Stub a bunch of functions required by libnx homebrew. (diff)
downloadyuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar.gz
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar.bz2
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar.lz
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar.xz
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.tar.zst
yuzu-c5a0408ccca4af6dc27e627a077d5480a3784e84.zip
Diffstat (limited to 'src/core/hle/service/am/applet_oe.cpp')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index ff0390b58..03d9991b9 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -6,6 +6,7 @@
#include "core/hle/ipc_helpers.h"
#include "core/hle/kernel/event.h"
#include "core/hle/service/am/applet_oe.h"
+#include "core/hle/service/apm/apm.h"
namespace Service {
namespace AM {
@@ -184,7 +185,7 @@ private:
void GetOperationMode(Kernel::HLERequestContext& ctx) {
IPC::RequestBuilder rb{ctx, 3};
rb.Push(RESULT_SUCCESS);
- rb.Push(static_cast<u8>(OperationMode::Handheld));
+ rb.Push(static_cast<u32>(APM::PerformanceMode::Handheld));
LOG_WARNING(Service, "(STUBBED) called");
}