From 5e39fecad5b7c3f411bc40a48b2dc47e096bc78d Mon Sep 17 00:00:00 2001 From: "R. Belmont" Date: Fri, 29 Mar 2013 02:13:48 +0000 Subject: [PATCH] Embrace and extend (nw) --- src/mess/machine/md_slot.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mess/machine/md_slot.c b/src/mess/machine/md_slot.c index 73b580f1f2a..5acde6cc015 100644 --- a/src/mess/machine/md_slot.c +++ b/src/mess/machine/md_slot.c @@ -996,7 +996,7 @@ void base_md_cart_slot_device::file_logging(UINT8 *ROM8, UINT32 rom_len, UINT32 logerror("FILE DETAILS\n" ); logerror("============\n" ); logerror("Name: %s\n", basename()); - logerror("File Size: 0x%llX\n", (software_entry() == NULL) ? length() : get_software_region_length("rom")); + logerror("File Size: 0x%" I64FMT "x\n", (software_entry() == NULL) ? length() : get_software_region_length("rom")); logerror("Detected type: %s\n", md_get_slot(m_type)); logerror("ROM (Allocated) Size: 0x%X\n", rom_len); logerror("NVRAM: %s\n", nvram_len ? "Yes" : "No");