mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-26 00:40:56 +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);
|
TranslateMessage(&msg);
|
||||||
// DispatchMessage(&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;
|
if (!appactive || quitevent) rv = -1;
|
||||||
|
|
Loading…
Reference in a new issue