aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/acc/acc_aa.cpp
diff options
context:
space:
mode:
authorVolcaEM <63682805+VolcaEM@users.noreply.github.com>2020-06-22 22:03:26 +0200
committerGitHub <noreply@github.com>2020-06-22 16:03:26 -0400
commite193aa3f53a09850606145466d6caa9abd3fb856 (patch)
treea43d6001855b6bbf2aee481c5f892746787fe654 /src/core/hle/service/acc/acc_aa.cpp
parent25174afa7922fab55e36acd1a2eb1a55daff7f27 (diff)
account: Update function tables and add missing classes (#4145)
* account: Update function tables and add missing classes * clang-format * Add missing "public" * Add missing public again * Add missing final
Diffstat (limited to 'src/core/hle/service/acc/acc_aa.cpp')
-rw-r--r--src/core/hle/service/acc/acc_aa.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/hle/service/acc/acc_aa.cpp b/src/core/hle/service/acc/acc_aa.cpp
index 3bac6bcd1..51f119b12 100644
--- a/src/core/hle/service/acc/acc_aa.cpp
+++ b/src/core/hle/service/acc/acc_aa.cpp
@@ -13,8 +13,8 @@ ACC_AA::ACC_AA(std::shared_ptr<Module> module, std::shared_ptr<ProfileManager> p
{0, nullptr, "EnsureCacheAsync"},
{1, nullptr, "LoadCache"},
{2, nullptr, "GetDeviceAccountId"},
- {50, nullptr, "RegisterNotificationTokenAsync"},
- {51, nullptr, "UnregisterNotificationTokenAsync"},
+ {50, nullptr, "RegisterNotificationTokenAsync"}, // 1.0.0 - 6.2.0
+ {51, nullptr, "UnregisterNotificationTokenAsync"}, // 1.0.0 - 6.2.0
};
RegisterHandlers(functions);
}