source/Platform/Win32/Win32EventQueue.cpp: should not return status from DispatchMessage()
this can falsely signal that we have translated a win32 event to engine event when in fact we have not.
This commit is contained in:
parent
92f42a08fb
commit
363afe111b
1 changed files with 2 additions and 1 deletions
|
|
@ -73,7 +73,8 @@ LRESULT Win32EventQueue::processMessage(MSG msg, Event& event)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Message was not intercepted. Pass down to window.
|
// Message was not intercepted. Pass down to window.
|
||||||
return DispatchMessage(&msg);
|
DispatchMessage(&msg);
|
||||||
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
} // namespace sp
|
} // namespace sp
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue