aboutsummaryrefslogtreecommitdiff
path: root/src/core/hle/service/set/set_fd.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2019-11-12 08:54:58 -0500
committerLioncash <mathew1800@gmail.com>2019-11-12 10:32:56 -0500
commite21b6ff79ddf7109db6f49e503e2c2e59fe466c7 (patch)
tree1c9437b9426af14d3af0566be6d385aea85d16a9 /src/core/hle/service/set/set_fd.cpp
parent8714d40a776f655c644392bc2454ace98064144e (diff)
service: Update function tables
Keeps the function tables up to date. Updated based off information from Switchbrew.
Diffstat (limited to 'src/core/hle/service/set/set_fd.cpp')
-rw-r--r--src/core/hle/service/set/set_fd.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/core/hle/service/set/set_fd.cpp b/src/core/hle/service/set/set_fd.cpp
index cac6af86d..565882a31 100644
--- a/src/core/hle/service/set/set_fd.cpp
+++ b/src/core/hle/service/set/set_fd.cpp
@@ -7,6 +7,7 @@
namespace Service::Set {
SET_FD::SET_FD() : ServiceFramework("set:fd") {
+ // clang-format off
static const FunctionInfo functions[] = {
{2, nullptr, "SetSettingsItemValue"},
{3, nullptr, "ResetSettingsItemValue"},
@@ -16,7 +17,10 @@ SET_FD::SET_FD() : ServiceFramework("set:fd") {
{20, nullptr, "SetWebInspectorFlag"},
{21, nullptr, "SetAllowedSslHosts"},
{22, nullptr, "SetHostFsMountPoint"},
+ {23, nullptr, "SetMemoryUsageRateFlag"},
};
+ // clang-format on
+
RegisterHandlers(functions);
}