summaryrefslogtreecommitdiffstats
path: root/docs/release/src/frontend/mame/audit.cpp
diff options
context:
space:
mode:
author Robbbert <Robbbert@users.noreply.github.com>2016-11-30 11:08:19 +1100
committer Robbbert <Robbbert@users.noreply.github.com>2016-11-30 11:08:19 +1100
commit3b4cac12debe8e6d998edb6899908ac6b84a637b (patch)
tree1ad5a12a0f0b75dcfb0776e05f6e3f1c9919d212 /docs/release/src/frontend/mame/audit.cpp
parent05d642eaca8e1a7ce978e14d11a836513fbf98c8 (diff)
0.180 Release fileshbmame180
Diffstat (limited to 'docs/release/src/frontend/mame/audit.cpp')
-rw-r--r--docs/release/src/frontend/mame/audit.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/release/src/frontend/mame/audit.cpp b/docs/release/src/frontend/mame/audit.cpp
index 8a34e7c3451..4e3cc3ecea7 100644
--- a/docs/release/src/frontend/mame/audit.cpp
+++ b/docs/release/src/frontend/mame/audit.cpp
@@ -380,7 +380,7 @@ media_auditor::audit_record &media_auditor::audit_one_rom(const rom_entry *rom)
audit_record &record = *m_record_list.emplace(m_record_list.end(), *rom, media_type::ROM);
// see if we have a CRC and extract it if so
- UINT32 crc = 0;
+ uint32_t crc = 0;
bool const has_crc = record.expected_hashes().crc(crc);
// find the file and checksum it, getting the file length along the way
@@ -481,7 +481,7 @@ void media_auditor::compute_status(audit_record &record, const rom_entry *rom, b
// shares a media entry with the same hashes
//-------------------------------------------------
-device_t *media_auditor::find_shared_device(device_t &device, const char *name, const util::hash_collection &romhashes, UINT64 romlength)
+device_t *media_auditor::find_shared_device(device_t &device, const char *name, const util::hash_collection &romhashes, uint64_t romlength)
{
bool const dumped = !romhashes.flag(util::hash_collection::FLAG_NO_DUMP);