summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/am/applet_oe.cpp
diff options
context:
space:
mode:
authorgreggameplayer <33609333+greggameplayer@users.noreply.github.com>2018-05-26 04:31:54 +0200
committerbunnei <bunneidev@gmail.com>2018-05-26 04:31:54 +0200
commitb16e5c6a81abdd0ac7b62f466bf15e4d51db26f9 (patch)
tree35672c1565e13a34bef5908a73d9a654c4e836f6 /src/core/hle/service/am/applet_oe.cpp
parentMerge pull request #466 from mailwl/nv-timeout (diff)
downloadyuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.gz
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.bz2
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.lz
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.xz
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.tar.zst
yuzu-b16e5c6a81abdd0ac7b62f466bf15e4d51db26f9.zip
Diffstat (limited to 'src/core/hle/service/am/applet_oe.cpp')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp
index 68388bf5e..587a922fe 100644
--- a/src/core/hle/service/am/applet_oe.cpp
+++ b/src/core/hle/service/am/applet_oe.cpp
@@ -98,7 +98,7 @@ void AppletOE::OpenApplicationProxy(Kernel::HLERequestContext& ctx) {
AppletOE::AppletOE(std::shared_ptr<NVFlinger::NVFlinger> nvflinger)
: ServiceFramework("appletOE"), nvflinger(std::move(nvflinger)) {
static const FunctionInfo functions[] = {
- {0x00000000, &AppletOE::OpenApplicationProxy, "OpenApplicationProxy"},
+ {0, &AppletOE::OpenApplicationProxy, "OpenApplicationProxy"},
};
RegisterHandlers(functions);
}