From 78facb0dc57d48225abe1b1282b33a5c197acc2c Mon Sep 17 00:00:00 2001 From: fgfemperor Date: Sun, 27 Dec 2009 02:07:46 +0000 Subject: [PATCH] Tiny Fix: Show the correct name for the HOME key when pressed on Button Mapping dialog. (It was displaying "Num 7" when you pressed the Home button (the one above "End")). Yeah, I know, it really is a silly fix... But hey, it's still a fix! =P git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4734 8ced0084-cf51-0410-be5f-012b33b47a6e --- Source/Core/InputCommon/Src/Configuration.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/Source/Core/InputCommon/Src/Configuration.cpp b/Source/Core/InputCommon/Src/Configuration.cpp index deb1117cf0..c680decd48 100644 --- a/Source/Core/InputCommon/Src/Configuration.cpp +++ b/Source/Core/InputCommon/Src/Configuration.cpp @@ -251,6 +251,7 @@ std::string VKToString(int keycode) case VK_END: return "END"; case VK_INSERT: return "INS"; case VK_DELETE: return "DEL"; + case VK_HOME: return "HOME"; case VK_PRIOR: return "PGUP"; case VK_NEXT: return "PGDN";