From 034d282ce04440bb2015739b67a75107512d2d56 Mon Sep 17 00:00:00 2001 From: Matt Callaghan Date: Tue, 22 Mar 2011 19:34:50 +0000 Subject: [PATCH] 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 --- Source/Core/VideoCommon/Src/EmuWindow.cpp | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/Source/Core/VideoCommon/Src/EmuWindow.cpp b/Source/Core/VideoCommon/Src/EmuWindow.cpp index 61e5a5f17c..6820d18f04 100644 --- a/Source/Core/VideoCommon/Src/EmuWindow.cpp +++ b/Source/Core/VideoCommon/Src/EmuWindow.cpp @@ -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;