mirror of
https://github.com/mamedev/mame.git
synced 2024-11-16 07:48:32 +01:00
Small 32 bit windows monitor module fix (nw)
This commit is contained in:
parent
7d401c1ad9
commit
ec4acf4b36
1 changed files with 1 additions and 1 deletions
|
@ -31,7 +31,7 @@ private:
|
|||
|
||||
public:
|
||||
win32_monitor_info(monitor_module& module, const HMONITOR handle, const char* monitor_device, float aspect)
|
||||
: osd_monitor_info(module, std::intptr_t(handle), monitor_device, aspect)
|
||||
: osd_monitor_info(module, std::uintptr_t(handle), monitor_device, aspect)
|
||||
{
|
||||
win32_monitor_info::refresh();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue