mirror of
https://github.com/holub/mame
synced 2025-04-24 09:20:02 +03:00
fix incorrect format string to allow compilation (nw)
This commit is contained in:
parent
292672f527
commit
2ff56cd342
@ -61,7 +61,7 @@ int uniflex_format::find_size(io_generic *io, uint32_t form_factor)
|
||||
uint16_t swap_size = pick_integer_be(sir, 0x3f, 2);
|
||||
|
||||
LOG_FORMATS("UniFLEX floppy dsk size %d\n", (uint32_t)size);
|
||||
LOG_FORMATS(" time = %lu %lu\n", pick_integer_be(sir, 0x08, 4), pick_integer_be(sir, 0x0c, 4));
|
||||
LOG_FORMATS(" time = %u %u\n", (uint32_t) pick_integer_be(sir, 0x08, 4), (uint32_t) pick_integer_be(sir, 0x0c, 4));
|
||||
LOG_FORMATS(" fdn_block_count: %d\n", fdn_block_count);
|
||||
|
||||
LOG_FORMATS(" file system name: ");
|
||||
|
Loading…
Reference in New Issue
Block a user