Correct an oversight and make handleevents() call our own window processing function instead of the default Windows one.

git-svn-id: https://svn.eduke32.com/eduke32@2681 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2012-05-20 05:36:32 +00:00
parent 977a6bea65
commit 6db214c112

View file

@ -830,7 +830,7 @@ int32_t handleevents(void)
TranslateMessage(&msg);
// DispatchMessage(&msg);
DefWindowProc(msg.hwnd, msg.message, msg.wParam, msg.lParam);
WndProcCallback(msg.hwnd, msg.message, msg.wParam, msg.lParam);
}
if (!appactive || quitevent) rv = -1;