diff options
| -rw-r--r-- | src/core/hle/service/am/applet_oe.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/core/hle/service/am/applet_oe.cpp b/src/core/hle/service/am/applet_oe.cpp index 0d7f9c03d..038080e8c 100644 --- a/src/core/hle/service/am/applet_oe.cpp +++ b/src/core/hle/service/am/applet_oe.cpp | |||
| @@ -206,8 +206,7 @@ public: | |||
| 206 | explicit IStorageAccessor(std::vector<u8> buffer) | 206 | explicit IStorageAccessor(std::vector<u8> buffer) |
| 207 | : ServiceFramework("IStorageAccessor"), buffer(std::move(buffer)) { | 207 | : ServiceFramework("IStorageAccessor"), buffer(std::move(buffer)) { |
| 208 | static const FunctionInfo functions[] = { | 208 | static const FunctionInfo functions[] = { |
| 209 | {0, &IStorageAccessor::GetSize, "GetSize"}, | 209 | {0, &IStorageAccessor::GetSize, "GetSize"}, {11, &IStorageAccessor::Read, "Read"}, |
| 210 | {11, &IStorageAccessor::Read, "Read"}, | ||
| 211 | }; | 210 | }; |
| 212 | RegisterHandlers(functions); | 211 | RegisterHandlers(functions); |
| 213 | } | 212 | } |