Sorry, apparently that last commit was pointless. Removing most of it. Best have as little 3D Vision mess in the code as possible.

But hey, at least somewhere along the line someone fixed hotkeys for us 3D Vision users.

git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@7397 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
Matt Callaghan 2011-03-22 19:34:50 +00:00
parent cfd268073c
commit 034d282ce0
1 changed files with 0 additions and 10 deletions

View File

@ -211,16 +211,6 @@ LRESULT CALLBACK WndProc( HWND hWnd, UINT iMsg, WPARAM wParam, LPARAM lParam )
return DefWindowProc(hWnd, iMsg, wParam, lParam);
}
break;
if(g_ActiveConfig.backend_info.bSupports3DVision && g_ActiveConfig.b3DVision)
{
case WM_USER_KEYDOWN:
case WM_SYSKEYDOWN:
case WM_KEYDOWN:
PostMessage(m_hParent, iMsg, wParam, lParam);
break;
}
case WM_SETCURSOR:
PostMessage(m_hParent, WM_USER, WM_USER_SETCURSOR, 0);
return true;