From ddb290d5f615019c33c42b8d94e5a5254cabcf33 Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Sat, 22 Oct 2016 13:13:17 +0200 Subject: 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 --- src/emu/machine.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/emu/machine.cpp') diff --git a/src/emu/machine.cpp b/src/emu/machine.cpp index adce482a19c..94c331eac8d 100644 --- a/src/emu/machine.cpp +++ b/src/emu/machine.cpp @@ -817,7 +817,7 @@ void running_machine::set_rtc_datetime(const system_time &systime) // rand - standardized random numbers //------------------------------------------------- -UINT32 running_machine::rand() +uint32_t running_machine::rand() { m_rand_seed = 1664525 * m_rand_seed + 1013904223; @@ -863,7 +863,7 @@ void running_machine::handle_saveload() } else { - UINT32 const openflags = (m_saveload_schedule == SLS_LOAD) ? OPEN_FLAG_READ : (OPEN_FLAG_WRITE | OPEN_FLAG_CREATE | OPEN_FLAG_CREATE_PATHS); + uint32_t const openflags = (m_saveload_schedule == SLS_LOAD) ? OPEN_FLAG_READ : (OPEN_FLAG_WRITE | OPEN_FLAG_CREATE | OPEN_FLAG_CREATE_PATHS); // open the file emu_file file(m_saveload_searchpath, openflags); @@ -927,7 +927,7 @@ void running_machine::handle_saveload() // of the system //------------------------------------------------- -void running_machine::soft_reset(void *ptr, INT32 param) +void running_machine::soft_reset(void *ptr, int32_t param) { logerror("Soft reset\n"); -- cgit v1.2.3-70-g09d2