summaryrefslogtreecommitdiff
path: root/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-05-02 14:39:40 +0200
committerLéo Lam <leo@leolam.fr>2020-05-02 14:40:14 +0200
commit19da1011648beb324122f36e6da4cd14cc4c7217 (patch)
tree4e139cc8b5f8936f7b9aa245199a939c46bc72bd /Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
parent66c91b9dfbb9f56713d8d71bd4f3dc6d6152e863 (diff)
Remove redundant Config prefix from ConfigInfo/ConfigLocation
Both structs are already in the Config namespace.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h')
-rw-r--r--Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
index e694cb622d..1b51a2e1b9 100644
--- a/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
+++ b/Source/Core/InputCommon/ControllerInterface/DualShockUDPClient/DualShockUDPClient.h
@@ -10,9 +10,9 @@ namespace ciface::DualShockUDPClient
{
namespace Settings
{
-extern const Config::ConfigInfo<bool> SERVER_ENABLED;
-extern const Config::ConfigInfo<std::string> SERVER_ADDRESS;
-extern const Config::ConfigInfo<int> SERVER_PORT;
+extern const Config::Info<bool> SERVER_ENABLED;
+extern const Config::Info<std::string> SERVER_ADDRESS;
+extern const Config::Info<int> SERVER_PORT;
} // namespace Settings
void Init();