mirror of
https://github.com/kevinbentley/Descent3.git
synced 2026-04-08 05:00:04 -04:00
Replace "unsigned int" with "uint32_t"
This commit is contained in:
@@ -1473,7 +1473,7 @@ void gameWinController::mouse_geteval() {
|
||||
return;
|
||||
|
||||
int x, y, dx, dy;
|
||||
unsigned int btnmask = (unsigned int)ddio_MouseGetState(&x, &y, &dx, &dy);
|
||||
uint32_t btnmask = (uint32_t)ddio_MouseGetState(&x, &y, &dx, &dy);
|
||||
|
||||
m_MseState.m_deltaX = dx;
|
||||
m_MseState.m_deltaY = dy;
|
||||
|
||||
Reference in New Issue
Block a user