aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/cecd/cecd_u.cpp
diff options
context:
space:
mode:
authormailwl <mailwl@gmail.com>2016-12-15 09:52:40 +0300
committermailwl <mailwl@gmail.com>2016-12-15 09:52:40 +0300
commit7f27be15212efebde1cf761fec9997c72cce7809 (patch)
treec98079c0a54cf00302d657c416b3b898868ebb4f /src/core/hle/service/cecd/cecd_u.cpp
parentec9130de8dfaf22bfc5dc8a4988b68532955b43a (diff)
Service/CECD: Add cecd:ndm service
Diffstat (limited to 'src/core/hle/service/cecd/cecd_u.cpp')
-rw-r--r--src/core/hle/service/cecd/cecd_u.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/core/hle/service/cecd/cecd_u.cpp b/src/core/hle/service/cecd/cecd_u.cpp
index 7d98ba6e9..3ed864f0b 100644
--- a/src/core/hle/service/cecd/cecd_u.cpp
+++ b/src/core/hle/service/cecd/cecd_u.cpp
@@ -9,6 +9,7 @@ namespace Service {
namespace CECD {
static const Interface::FunctionInfo FunctionTable[] = {
+ // cecd:u shared commands
{0x000100C2, nullptr, "OpenRawFile"},
{0x00020042, nullptr, "ReadRawFile"},
{0x00030104, nullptr, "ReadMessage"},
@@ -27,7 +28,7 @@ static const Interface::FunctionInfo FunctionTable[] = {
{0x00120104, nullptr, "OpenAndRead"},
};
-CECD_U_Interface::CECD_U_Interface() {
+CECD_U::CECD_U() {
Register(FunctionTable);
}