fix compilation error when building with VS14 CTP4 (nw)

This commit is contained in:
smf- 2014-10-17 12:54:46 +00:00
parent b720bf7ab2
commit aac94154ff

View File

@ -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);
}