Unblock E key. I could not use E when changing a symbol name in the debugger, this seemed to fix that. While it still does its PostMessage.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@1284 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
John Peterson 2008-11-24 08:13:31 +00:00
parent 67087170ab
commit 2229d4e038
1 changed files with 1 additions and 0 deletions

View File

@ -624,6 +624,7 @@ void CFrame::OnKeyDown(wxKeyEvent& event)
else if(event.GetKeyCode() == 'E') // Send this to the video plugin WndProc
{
PostMessage((HWND)Core::GetWindowHandle(), WM_KEYDOWN, event.GetKeyCode(), 0);
event.Skip();
}
#endif
else