summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/romcmp.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/romcmp.cpp')
-rw-r--r--src/tools/romcmp.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/tools/romcmp.cpp b/src/tools/romcmp.cpp
index 0545da64c64..f45ff7f6eeb 100644
--- a/src/tools/romcmp.cpp
+++ b/src/tools/romcmp.cpp
@@ -394,8 +394,8 @@ static float filecompare(const fileinfo *file1,const fileinfo *file2,int mode1,i
static void readfile(const char *path,fileinfo *file)
{
osd_file::error filerr;
- UINT64 filesize;
- UINT32 actual;
+ uint64_t filesize;
+ uint32_t actual;
char fullname[256];
osd_file::ptr f;
@@ -463,7 +463,7 @@ static int load_files(int i, int *found, const char *path)
sprintf(buf, "%s%c%s", path, PATH_DELIM, d_name);
if (d->type == osd::directory::entry::entry_type::FILE)
{
- UINT64 size = d->size;
+ uint64_t size = d->size;
while (size && (size & 1) == 0) size >>= 1;
//if (size & ~1)
// printf("%-23s %-23s ignored (not a ROM)\n",i ? "" : d_name,i ? d_name : "");