summaryrefslogtreecommitdiff
path: root/src/core/hle/service/sm
diff options
context:
space:
mode:
authorGravatar bunnei2017-10-14 22:50:04 -0400
committerGravatar bunnei2017-10-14 22:50:04 -0400
commit72eeca1f037261ca2802da79ff1feff813e26e48 (patch)
tree19c5b2e89cd832f8a87dcc82e415553dceb01060 /src/core/hle/service/sm
parenthle: Initial implementation of NX service framework and IPC. (diff)
downloadyuzu-72eeca1f037261ca2802da79ff1feff813e26e48.tar.gz
yuzu-72eeca1f037261ca2802da79ff1feff813e26e48.tar.xz
yuzu-72eeca1f037261ca2802da79ff1feff813e26e48.zip
hle: Add service stubs for apm and appletOE.
Diffstat (limited to 'src/core/hle/service/sm')
-rw-r--r--src/core/hle/service/sm/sm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/hle/service/sm/sm.cpp b/src/core/hle/service/sm/sm.cpp
index 2068471f2..b027651d0 100644
--- a/src/core/hle/service/sm/sm.cpp
+++ b/src/core/hle/service/sm/sm.cpp
@@ -103,7 +103,7 @@ void SM::GetService(Kernel::HLERequestContext& ctx) {
103 IPC::RequestParser rp{ctx}; 103 IPC::RequestParser rp{ctx};
104 u32 unk1 = rp.Pop<u32>(); 104 u32 unk1 = rp.Pop<u32>();
105 u32 unk2 = rp.Pop<u32>(); 105 u32 unk2 = rp.Pop<u32>();
106 auto name_buf = rp.PopRaw<std::array<char, 6>>(); 106 auto name_buf = rp.PopRaw<std::array<char, 9>>();
107 std::string name(name_buf.data()); 107 std::string name(name_buf.data());
108 108
109 // TODO(yuriks): Permission checks go here 109 // TODO(yuriks): Permission checks go here