From 37b20124f9935a8d0c67327bf4063610fe5df0c8 Mon Sep 17 00:00:00 2001 From: Camilla Berglund Date: Thu, 29 Oct 2015 14:03:22 +0100 Subject: [PATCH] Make call to DefWindowProcW explicit --- src/win32_window.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/win32_window.c b/src/win32_window.c index 96aa378f..342a5dff 100644 --- a/src/win32_window.c +++ b/src/win32_window.c @@ -660,7 +660,7 @@ static LRESULT CALLBACK windowProc(HWND hWnd, UINT uMsg, } } - return DefWindowProc(hWnd, uMsg, wParam, lParam); + return DefWindowProcW(hWnd, uMsg, wParam, lParam); } // Creates the GLFW window and rendering context