diff options
| author | Connor McLaughlin <stenzek@gmail.com> | 2019-04-21 13:56:50 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-04-21 13:56:50 +1000 |
| commit | ca55375d011372b901f81a4a3275cf2be6d87af5 (patch) | |
| tree | 51f40938756df50e97905e56781ff8d30fae6e29 /Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp | |
| parent | 5b4ebccf6bf45a614cd2a5031607743b482ff776 (diff) | |
| parent | 8c1310d1d11352cc3385cde64def53e52186c531 (diff) | |
Merge pull request #8015 from jordan-woyak/dinput-cursor-optimize
ControllerInterface/DInput: Optimize cursor position updating.
Diffstat (limited to 'Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp')
| -rw-r--r-- | Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp index cb484cc6ca..847f4f8103 100644 --- a/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp +++ b/Source/Core/InputCommon/ControllerInterface/DInput/DInput.cpp @@ -64,7 +64,7 @@ void PopulateDevices(HWND hwnd) return; } - InitKeyboardMouse(idi8); + InitKeyboardMouse(idi8, hwnd); InitJoystick(idi8, hwnd); idi8->Release(); |
