mirror of
https://github.com/reactos/reactos.git
synced 2024-11-18 13:01:40 +00:00
[WIN32SS] Do not remove message from the Msg Queue if it is not for us. (#4129)
CORE-8217 Patch from 'I_Kill_Bugs' contributor.
This commit is contained in:
parent
63bb43adbb
commit
7d1b50394b
1 changed files with 1 additions and 1 deletions
|
@ -1524,7 +1524,7 @@ BOOL co_IntProcessMouseMessage(MSG* msg, BOOL* RemoveMessages, BOOL* NotForUs, L
|
|||
{
|
||||
// This is not for us and we should leave so the other thread can check for messages!!!
|
||||
*NotForUs = TRUE;
|
||||
*RemoveMessages = TRUE;
|
||||
*RemoveMessages = FALSE;
|
||||
return FALSE;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue