From fb2ec4fd62e8218ac485c4ad1992c7e01951159d Mon Sep 17 00:00:00 2001 From: David Robillard Date: Mon, 30 Apr 2012 06:10:29 +0000 Subject: Implement special keys and keyboard modifiers on X11. --- pugl/pugl_win.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'pugl/pugl_win.cpp') diff --git a/pugl/pugl_win.cpp b/pugl/pugl_win.cpp index f487352..a5c9dde 100644 --- a/pugl/pugl_win.cpp +++ b/pugl/pugl_win.cpp @@ -157,8 +157,8 @@ processMouseEvent(PuglView* view, int button, bool press, LPARAM lParam) { if (view->mouseFunc) { view->mouseFunc(view, button, press, - GET_X_LPARAM(lParam), - GET_Y_LPARAM(lParam)); + GET_X_LPARAM(lParam), + GET_Y_LPARAM(lParam)); } } -- cgit v1.2.3