mirror of
https://github.com/TorqueGameEngines/Torque3D.git
synced 2026-02-13 11:43:49 +00:00
Changed some size_t to uintptr_t.
This commit is contained in:
parent
cc9be50422
commit
6d1ef41c69
3 changed files with 5 additions and 5 deletions
|
|
@ -138,7 +138,7 @@ void Win32WindowManager::buildMonitorsList()
|
|||
mMonitors.clear();
|
||||
|
||||
// Enumerate all monitors
|
||||
EnumDisplayMonitors(NULL, NULL, MonitorEnumProc, (size_t)(void*)&mMonitors);
|
||||
EnumDisplayMonitors(NULL, NULL, MonitorEnumProc, (uintptr_t)&mMonitors);
|
||||
}
|
||||
|
||||
S32 Win32WindowManager::findFirstMatchingMonitor(const char* name)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue