microsoft / DirectX-Graphics-Samples

This repo contains the DirectX Graphics samples that demonstrate how to build graphics intensive applications on Windows.
MIT License
5.89k stars 2k forks source link

Fix recognition of WM_QUIT #776

Closed jmsaunde closed 2 years ago

jmsaunde commented 2 years ago

If multiple messages are received at the same time as the quit message, then we can miss it because we only check the last message received. To repro this, alt-F4 while moving the mouse. Fix by just keeping track of whether we ever saw WM_QUIT in the message dispatch loop.

stanard commented 2 years ago

Thanks for your PR. I approved.