diff options
author | 2016-10-22 13:13:17 +0200 | |
---|---|---|
committer | 2016-10-22 13:13:17 +0200 | |
commit | ddb290d5f615019c33c42b8d94e5a5254cabcf33 (patch) | |
tree | a70f688b0df3acd19da7b1151e5902e3c6af3fa5 /src/osd/modules/debugger/win/consolewininfo.cpp | |
parent | 333bff8de64dfaeb98134000412796b4fdef970b (diff) |
NOTICE (TYPE NAME CONSOLIDATION)
Use standard uint64_t, uint32_t, uint16_t or uint8_t instead of UINT64, UINT32, UINT16 or UINT8
also use standard int64_t, int32_t, int16_t or int8_t instead of INT64, INT32, INT16 or INT8
Diffstat (limited to 'src/osd/modules/debugger/win/consolewininfo.cpp')
-rw-r--r-- | src/osd/modules/debugger/win/consolewininfo.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/osd/modules/debugger/win/consolewininfo.cpp b/src/osd/modules/debugger/win/consolewininfo.cpp index 3dbeda67d32..c5e9417487a 100644 --- a/src/osd/modules/debugger/win/consolewininfo.cpp +++ b/src/osd/modules/debugger/win/consolewininfo.cpp @@ -65,8 +65,8 @@ consolewin_info::consolewin_info(debugger_windows_interface &debugger) : set_maxwidth(bounds.right - bounds.left); // position the window at the bottom-right - int const bestwidth = (std::min<UINT32>)(maxwidth(), work_bounds.right - work_bounds.left); - int const bestheight = (std::min<UINT32>)(500, work_bounds.bottom - work_bounds.top); + int const bestwidth = (std::min<uint32_t>)(maxwidth(), work_bounds.right - work_bounds.left); + int const bestheight = (std::min<uint32_t>)(500, work_bounds.bottom - work_bounds.top); SetWindowPos(window(), HWND_TOP, work_bounds.right - bestwidth, work_bounds.bottom - bestheight, bestwidth, bestheight, @@ -157,7 +157,7 @@ void consolewin_info::update_menu() if (m_devices_menu != nullptr) { // create the image menu - UINT32 cnt = 0; + uint32_t cnt = 0; for (device_image_interface &img : image_interface_iterator(machine().root_device())) { HMENU const devicesubmenu = CreatePopupMenu(); @@ -202,7 +202,7 @@ bool consolewin_info::handle_command(WPARAM wparam, LPARAM lparam) { if ((HIWORD(wparam) == 0) && (LOWORD(wparam) >= ID_DEVICE_OPTIONS)) { - UINT32 const devid = (LOWORD(wparam) - ID_DEVICE_OPTIONS) / DEVOPTION_MAX; + uint32_t const devid = (LOWORD(wparam) - ID_DEVICE_OPTIONS) / DEVOPTION_MAX; image_interface_iterator iter(machine().root_device()); device_image_interface *const img = iter.byindex(devid); if (img != nullptr) |