mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-11 07:11:39 +00:00
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:
parent
977a6bea65
commit
6db214c112
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue