diff options
Diffstat (limited to 'c/main.cpp')
-rw-r--r-- | c/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -355,10 +355,10 @@ LRESULT CALLBACK WndProc(const HWND hWnd, const UINT uMsg, const WPARAM wParam, break; } case WM_LBUTTONDOWN: - g_dragDlv.HandleDown(); + g_dragDlv.HandleLButtonDown(); break; case WM_SETCURSOR: - if (!g_dragDlv.HandleMove()) { + if (!g_dragDlv.HandleSetCursor()) { /* Use default cursor. */ if (reinterpret_cast<HWND>(wParam) == hWnd) return DefWindowProc(hWnd, uMsg, wParam, lParam); |