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
This commit is contained in:
fgfemperor 2009-12-27 02:07:46 +00:00
parent 4d6b14cc97
commit 78facb0dc5
1 changed files with 1 additions and 0 deletions

View File

@ -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";