From 5dedf8892287da615cd4d445d6ddfebb5e70497c Mon Sep 17 00:00:00 2001 From: skidau Date: Sat, 17 Jan 2015 11:46:56 +1100 Subject: [PATCH] Escaped the backslash character and relabelled the = key to EQUALS so that it gets saved in the ini profile. --- Source/Core/Core/HW/GCKeyboardEmu.cpp | 4 ++-- 1 file 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");