diff options
author | bunnei <bunneidev@gmail.com> | 2018-01-19 06:37:36 +0100 |
---|---|---|
committer | bunnei <bunneidev@gmail.com> | 2018-01-19 06:37:36 +0100 |
commit | 1d496806131614aa860a06676a18bb9416163031 (patch) | |
tree | 7c46d42977a8de61103cd21de935667bd3aa0e8b /src | |
parent | Merge pull request #108 from gdkchan/dispdrv (diff) | |
download | yuzu-1d496806131614aa860a06676a18bb9416163031.tar yuzu-1d496806131614aa860a06676a18bb9416163031.tar.gz yuzu-1d496806131614aa860a06676a18bb9416163031.tar.bz2 yuzu-1d496806131614aa860a06676a18bb9416163031.tar.lz yuzu-1d496806131614aa860a06676a18bb9416163031.tar.xz yuzu-1d496806131614aa860a06676a18bb9416163031.tar.zst yuzu-1d496806131614aa860a06676a18bb9416163031.zip |
Diffstat (limited to 'src')
-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: explicit IStorageAccessor(std::vector<u8> buffer) : ServiceFramework("IStorageAccessor"), buffer(std::move(buffer)) { static const FunctionInfo functions[] = { - {0, &IStorageAccessor::GetSize, "GetSize"}, - {11, &IStorageAccessor::Read, "Read"}, + {0, &IStorageAccessor::GetSize, "GetSize"}, {11, &IStorageAccessor::Read, "Read"}, }; RegisterHandlers(functions); } |