summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/cecd
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2016-02-02 03:37:10 +0100
committerLioncash <mathew1800@gmail.com>2016-02-02 03:49:44 +0100
commit5e5bb0c32e155131585baad82b7a1d52551488cb (patch)
tree2135e05d9d5da53869950fe20d1673948b071ed7 /src/core/hle/service/cecd
parentMerge pull request #1377 from MerryMage/mmio (diff)
downloadyuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.gz
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.bz2
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.lz
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.xz
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.tar.zst
yuzu-5e5bb0c32e155131585baad82b7a1d52551488cb.zip
Diffstat (limited to 'src/core/hle/service/cecd')
-rw-r--r--src/core/hle/service/cecd/cecd_u.cpp7
1 files changed, 4 insertions, 3 deletions
diff --git a/src/core/hle/service/cecd/cecd_u.cpp b/src/core/hle/service/cecd/cecd_u.cpp
index 0a23bafbc..6a6dca8e5 100644
--- a/src/core/hle/service/cecd/cecd_u.cpp
+++ b/src/core/hle/service/cecd/cecd_u.cpp
@@ -9,11 +9,12 @@
namespace Service {
namespace CECD {
-// Empty arrays are illegal -- commented out until an entry is added.
-//const Interface::FunctionInfo FunctionTable[] = { };
+static const Interface::FunctionInfo FunctionTable[] = {
+ { 0x00120104, nullptr, "ReadSavedData" },
+};
CECD_U_Interface::CECD_U_Interface() {
- //Register(FunctionTable);
+ Register(FunctionTable);
}
} // namespace CECD