diff options
| author | ayuanx <ayuanx@gmail.com> | 2010-01-04 03:31:49 +0000 |
|---|---|---|
| committer | ayuanx <ayuanx@gmail.com> | 2010-01-04 03:31:49 +0000 |
| commit | 736d84f5d628cf538d0a81ea66bd650914109e52 (patch) | |
| tree | e81a0ca36164d76b137f5e9429eb28c243dbbdd0 /Source/Plugins/Plugin_VideoSoftware | |
| parent | 430f44cb1eba66fa4af44e1c1f89265e5d2204f0 (diff) | |
Remap wiimote hotkeys to Alt+F5/F6/F7/F8 to make Windows happy.
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@4783 8ced0084-cf51-0410-be5f-012b33b47a6e
Diffstat (limited to 'Source/Plugins/Plugin_VideoSoftware')
| -rw-r--r-- | Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp b/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp index bc7e60fe32..6c9ab4ac20 100644 --- a/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp +++ b/Source/Plugins/Plugin_VideoSoftware/Src/Win32.cpp @@ -148,7 +148,7 @@ LRESULT CALLBACK WndProc( HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam ) return 0;
}
break;
- case VK_F1: case VK_F2: case VK_F3: case VK_F4:
+ case VK_F5: case VK_F6: case VK_F7: case VK_F8:
PostMessage(m_hMain, WM_SYSKEYDOWN, wParam, lParam);
return 0;
}
|
