From aac94154ff3443607fc0a41dc3049244c0f69cf5 Mon Sep 17 00:00:00 2001 From: smf- Date: Fri, 17 Oct 2014 12:54:46 +0000 Subject: [PATCH] fix compilation error when building with VS14 CTP4 (nw) --- src/emu/machine/nvram.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/emu/machine/nvram.c b/src/emu/machine/nvram.c index c4dd6c1388a..8668b93796c 100644 --- a/src/emu/machine/nvram.c +++ b/src/emu/machine/nvram.c @@ -167,5 +167,5 @@ void nvram_device::determine_final_base() // if we are region-backed for the default, find it now and make sure it's the right size if (m_region != NULL && m_region->bytes() != m_length) - throw emu_fatalerror("NVRAM device '%s' has a default region, but it should be 0x%"SIZETFMT"X bytes", tag(), m_length); + throw emu_fatalerror("NVRAM device '%s' has a default region, but it should be 0x%" SIZETFMT "X bytes", tag(), m_length); }