summaryrefslogtreecommitdiff
path: root/platform/windows
diff options
context:
space:
mode:
authorGeorge Marques <george@gmarqu.es>2017-06-15 13:34:57 -0300
committerGeorge Marques <george@gmarqu.es>2017-06-15 13:34:57 -0300
commitdd2b7ef747de880d7e437c3e4116cf796f55c249 (patch)
tree041b1223df7982c12cc632f2c8a5ffb8801aa0c6 /platform/windows
parentf8bd4884570fafc36bbad82ec662d27276d1c7a5 (diff)
Fix MouseWheel position on Windows
Diffstat (limited to 'platform/windows')
-rw-r--r--platform/windows/os_windows.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp
index 4393cad3bf..e94529dd94 100644
--- a/platform/windows/os_windows.cpp
+++ b/platform/windows/os_windows.cpp
@@ -543,8 +543,6 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
mb->set_position(Vector2(old_x, old_y));
}
- mb->set_global_position(mb->get_position());
-
if (uMsg != WM_MOUSEWHEEL) {
if (mb->is_pressed()) {
@@ -568,6 +566,8 @@ LRESULT OS_Windows::WndProc(HWND hWnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
mb->set_position(Vector2(coords.x, coords.y));
}
+ mb->set_global_position(mb->get_position());
+
if (main_loop) {
input->parse_input_event(mb);
if (mb->is_pressed() && mb->get_button_index() > 3) {