summaryrefslogtreecommitdiffstats
path: root/src/core
diff options
context:
space:
mode:
authorbunnei <bunneidev@gmail.com>2018-01-19 06:37:36 +0100
committerbunnei <bunneidev@gmail.com>2018-01-19 06:37:36 +0100
commit1d496806131614aa860a06676a18bb9416163031 (patch)
tree7c46d42977a8de61103cd21de935667bd3aa0e8b /src/core
parentMerge pull request #108 from gdkchan/dispdrv (diff)
downloadyuzu-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/core')
-rw-r--r--src/core/hle/service/am/applet_oe.cpp3
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);
}