summaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc
diff options
context:
space:
mode:
authorGravatar Liam2023-03-11 22:10:38 -0500
committerGravatar Liam2023-03-12 11:33:01 -0400
commit600f325d87e42f856da58c42a5280f098ebb6e8c (patch)
tree75c4fe48af55186a4e420e94a1d7e1bfd92e4ec0 /src/core/hle/service/acc
parentgeneral: use codespell to identify spelling mistakes (diff)
downloadyuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.gz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.tar.xz
yuzu-600f325d87e42f856da58c42a5280f098ebb6e8c.zip
general: fix spelling mistakes
Diffstat (limited to 'src/core/hle/service/acc')
-rw-r--r--src/core/hle/service/acc/acc.cpp2
-rw-r--r--src/core/hle/service/acc/profile_manager.cpp6
2 files changed, 4 insertions, 4 deletions
diff --git a/src/core/hle/service/acc/acc.cpp b/src/core/hle/service/acc/acc.cpp
index 120282aa4..6c29cb613 100644
--- a/src/core/hle/service/acc/acc.cpp
+++ b/src/core/hle/service/acc/acc.cpp
@@ -789,7 +789,7 @@ Result Module::Interface::InitializeApplicationInfoBase() {
789 } 789 }
790 790
791 LOG_WARNING(Service_ACC, "ApplicationInfo init required"); 791 LOG_WARNING(Service_ACC, "ApplicationInfo init required");
792 // TODO(ogniK): Actual initalization here 792 // TODO(ogniK): Actual initialization here
793 793
794 return ResultSuccess; 794 return ResultSuccess;
795} 795}
diff --git a/src/core/hle/service/acc/profile_manager.cpp b/src/core/hle/service/acc/profile_manager.cpp
index 97f7c6688..63fd5bfd6 100644
--- a/src/core/hle/service/acc/profile_manager.cpp
+++ b/src/core/hle/service/acc/profile_manager.cpp
@@ -287,7 +287,7 @@ void ProfileManager::StoreOpenedUsers() {
287 }); 287 });
288} 288}
289 289
290/// Return the users profile base and the unknown arbitary data. 290/// Return the users profile base and the unknown arbitrary data.
291bool ProfileManager::GetProfileBaseAndData(std::optional<std::size_t> index, ProfileBase& profile, 291bool ProfileManager::GetProfileBaseAndData(std::optional<std::size_t> index, ProfileBase& profile,
292 UserData& data) const { 292 UserData& data) const {
293 if (GetProfileBase(index, profile)) { 293 if (GetProfileBase(index, profile)) {
@@ -297,13 +297,13 @@ bool ProfileManager::GetProfileBaseAndData(std::optional<std::size_t> index, Pro
297 return false; 297 return false;
298} 298}
299 299
300/// Return the users profile base and the unknown arbitary data. 300/// Return the users profile base and the unknown arbitrary data.
301bool ProfileManager::GetProfileBaseAndData(UUID uuid, ProfileBase& profile, UserData& data) const { 301bool ProfileManager::GetProfileBaseAndData(UUID uuid, ProfileBase& profile, UserData& data) const {
302 const auto idx = GetUserIndex(uuid); 302 const auto idx = GetUserIndex(uuid);
303 return GetProfileBaseAndData(idx, profile, data); 303 return GetProfileBaseAndData(idx, profile, data);
304} 304}
305 305
306/// Return the users profile base and the unknown arbitary data. 306/// Return the users profile base and the unknown arbitrary data.
307bool ProfileManager::GetProfileBaseAndData(const ProfileInfo& user, ProfileBase& profile, 307bool ProfileManager::GetProfileBaseAndData(const ProfileInfo& user, ProfileBase& profile,
308 UserData& data) const { 308 UserData& data) const {
309 return GetProfileBaseAndData(user.user_uuid, profile, data); 309 return GetProfileBaseAndData(user.user_uuid, profile, data);