summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2018-01-19 00:37:36 -0500
committerGravatar bunnei2018-01-19 00:37:36 -0500
commit1d496806131614aa860a06676a18bb9416163031 (patch)
tree7c46d42977a8de61103cd21de935667bd3aa0e8b
parentMerge pull request #108 from gdkchan/dispdrv (diff)
downloadyuzu-1d496806131614aa860a06676a18bb9416163031.tar.gz
yuzu-1d496806131614aa860a06676a18bb9416163031.tar.xz
yuzu-1d496806131614aa860a06676a18bb9416163031.zip
applet_oe: Clang-format.
Diffstat (limited to '')
-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:
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 }