summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorskidau <skidau@gmail.com>2015-01-17 11:46:56 +1100
committerskidau <skidau@gmail.com>2015-01-17 11:46:56 +1100
commit5dedf8892287da615cd4d445d6ddfebb5e70497c (patch)
tree9dcca4a36804e060573adfd47c242cc3c0295f35 /Source/Core
parent6d8ab0c256457b8114b21a4178ec899b5873094d (diff)
Escaped the backslash character and relabelled the = key to EQUALS so that it gets saved in the ini profile.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Core/HW/GCKeyboardEmu.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/Core/HW/GCKeyboardEmu.cpp b/Source/Core/Core/HW/GCKeyboardEmu.cpp
index 91b0c9ebf8..8836aaeaa3 100644
--- a/Source/Core/Core/HW/GCKeyboardEmu.cpp
+++ b/Source/Core/Core/HW/GCKeyboardEmu.cpp
@@ -163,7 +163,7 @@ static const char* const named_keys2[] =
"PRT SC",
"'",
"[",
- "=",
+ "EQUALS",
"*"
};
static const char* const named_keys3[] =
@@ -379,7 +379,7 @@ void GCKeyboard::LoadDefaults(const ControllerInterface& ciface)
set_control(m_keys3x, 1, ",");
set_control(m_keys3x, 2, ".");
set_control(m_keys3x, 3, "/");
- set_control(m_keys3x, 4, "\");
+ set_control(m_keys3x, 4, "\\");
set_control(m_keys4x, 1, "Escape");
set_control(m_keys4x, 2, "Insert");