aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--pugl/pugl_win.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/pugl/pugl_win.c b/pugl/pugl_win.c
index a5cb6cc..0e378eb 100644
--- a/pugl/pugl_win.c
+++ b/pugl/pugl_win.c
@@ -839,7 +839,7 @@ puglProcessEvents(PuglView* view)
MSG msg;
while (PeekMessage(&msg, view->impl->hwnd, 0, 0, PM_REMOVE)) {
TranslateMessage(&msg);
- handleMessage(view, msg.message, msg.wParam, msg.lParam);
+ DispatchMessage(&msg);
}
return PUGL_SUCCESS;