summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon
diff options
context:
space:
mode:
authorMatt Callaghan <mattcallaghan@gmail.com>2011-03-22 19:34:50 +0000
committerMatt Callaghan <mattcallaghan@gmail.com>2011-03-22 19:34:50 +0000
commit034d282ce04440bb2015739b67a75107512d2d56 (patch)
treed9532ebbd089110881f036bf5ab8e7dfe63fe6a8 /Source/Core/VideoCommon
parentcfd268073cf08abf853b80089168b437f9a10d91 (diff)
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
Diffstat (limited to 'Source/Core/VideoCommon')
-rw-r--r--Source/Core/VideoCommon/Src/EmuWindow.cpp10
1 files changed, 0 insertions, 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;