Use WPARAM as uint64_t and LPARAM as int64_t
This commit is contained in:
parent
2ac40cc28e
commit
f22837523f
4 changed files with 6 additions and 4 deletions
|
@ -469,7 +469,8 @@ void NativeWindow::NotifyWindowMessage(UINT message, WPARAM w_param,
|
|||
LPARAM l_param) {
|
||||
FOR_EACH_OBSERVER(
|
||||
NativeWindowObserver, observers_,
|
||||
OnWindowMessage(message, w_param, static_cast<uint64_t>(l_param)));
|
||||
OnWindowMessage(message, static_cast<uint64_t>(w_param),
|
||||
static_cast<int64_t>(l_param)));
|
||||
}
|
||||
#endif
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue