summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Config/Config.cpp
diff options
context:
space:
mode:
authorJosJuice <josjuice@gmail.com>2018-05-02 18:18:27 +0200
committerJosJuice <josjuice@gmail.com>2018-05-02 18:18:27 +0200
commit6e96f62b413ca0045aa5cf6d5cdb6479b9caa1b6 (patch)
tree94174ccfb1df21904dbb01d5b88bf7f204cba53c /Source/Core/Common/Config/Config.cpp
parentad098283c023b0f5f0d314c646bc5d5756c35e3d (diff)
Remove code related to UI.ini
We don't use it for anything, we just create it and leave it empty.
Diffstat (limited to 'Source/Core/Common/Config/Config.cpp')
-rw-r--r--Source/Core/Common/Config/Config.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/Common/Config/Config.cpp b/Source/Core/Common/Config/Config.cpp
index df17d8a0db..7e1fc904d9 100644
--- a/Source/Core/Common/Config/Config.cpp
+++ b/Source/Core/Common/Config/Config.cpp
@@ -88,9 +88,9 @@ void ClearCurrentRunLayer()
}
static const std::map<System, std::string> system_to_name = {
- {System::Main, "Dolphin"}, {System::GCPad, "GCPad"}, {System::WiiPad, "Wiimote"},
- {System::GCKeyboard, "GCKeyboard"}, {System::GFX, "Graphics"}, {System::Logger, "Logger"},
- {System::Debugger, "Debugger"}, {System::UI, "UI"}, {System::SYSCONF, "SYSCONF"}};
+ {System::Main, "Dolphin"}, {System::GCPad, "GCPad"}, {System::WiiPad, "Wiimote"},
+ {System::GCKeyboard, "GCKeyboard"}, {System::GFX, "Graphics"}, {System::Logger, "Logger"},
+ {System::Debugger, "Debugger"}, {System::SYSCONF, "SYSCONF"}};
const std::string& GetSystemName(System system)
{