diff options
author | 2016-03-07 19:34:44 +0100 | |
---|---|---|
committer | 2016-03-07 19:34:44 +0100 | |
commit | e76d30243e48cc99cb5e5a92667a66617e2c6f4c (patch) | |
tree | e7eeae9f8c83255e0a09887203e88f0c4c509ee3 /src/devices/machine/nvram.cpp | |
parent | a0aafea67ff49ee4dbc2bd66be848d3fd76e5030 (diff) |
Removed I64FMT and SIZETFMT, one usage left in chdman.cpp (nw)
Diffstat (limited to 'src/devices/machine/nvram.cpp')
-rw-r--r-- | src/devices/machine/nvram.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/machine/nvram.cpp b/src/devices/machine/nvram.cpp index d1e99ceb98b..88d1191187a 100644 --- a/src/devices/machine/nvram.cpp +++ b/src/devices/machine/nvram.cpp @@ -165,5 +165,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 != nullptr && 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("%s",string_format("NVRAM device '%s' has a default region, but it should be 0x%I64uX bytes", tag(), m_length).c_str()); } |