summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/set/set_fd.cpp
diff options
context:
space:
mode:
authorgerman77 <juangerman-13@hotmail.com>2024-01-07 00:49:40 +0100
committergerman77 <juangerman-13@hotmail.com>2024-01-07 06:16:03 +0100
commit8e27a485d8d652a87afb64a6b3b7e55ce50550eb (patch)
tree7da1d6179131306c858f1a6fe92a5e8e5a77b168 /src/core/hle/service/set/set_fd.cpp
parentservice: set: Use official names (diff)
downloadyuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.gz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.bz2
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.lz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.xz
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.tar.zst
yuzu-8e27a485d8d652a87afb64a6b3b7e55ce50550eb.zip
Diffstat (limited to 'src/core/hle/service/set/set_fd.cpp')
-rw-r--r--src/core/hle/service/set/set_fd.cpp29
1 files changed, 0 insertions, 29 deletions
diff --git a/src/core/hle/service/set/set_fd.cpp b/src/core/hle/service/set/set_fd.cpp
deleted file mode 100644
index e115e4522..000000000
--- a/src/core/hle/service/set/set_fd.cpp
+++ /dev/null
@@ -1,29 +0,0 @@
-// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
-// SPDX-License-Identifier: GPL-2.0-or-later
-
-#include "core/hle/service/set/set_fd.h"
-
-namespace Service::Set {
-
-IFirmwareDebugSettingsServer::IFirmwareDebugSettingsServer(Core::System& system_)
- : ServiceFramework{system_, "set:fd"} {
- // clang-format off
- static const FunctionInfo functions[] = {
- {2, nullptr, "SetSettingsItemValue"},
- {3, nullptr, "ResetSettingsItemValue"},
- {4, nullptr, "CreateSettingsItemKeyIterator"},
- {10, nullptr, "ReadSettings"},
- {11, nullptr, "ResetSettings"},
- {20, nullptr, "SetWebInspectorFlag"},
- {21, nullptr, "SetAllowedSslHosts"},
- {22, nullptr, "SetHostFsMountPoint"},
- {23, nullptr, "SetMemoryUsageRateFlag"},
- };
- // clang-format on
-
- RegisterHandlers(functions);
-}
-
-IFirmwareDebugSettingsServer::~IFirmwareDebugSettingsServer() = default;
-
-} // namespace Service::Set