diff options
author | 2016-03-02 22:22:24 +1100 | |
---|---|---|
committer | 2016-03-03 01:25:48 +1100 | |
commit | 66d0ef8ed4d7f4de5b104a9c8634b3a3a7bffe92 (patch) | |
tree | b75aa55e7a8448e8f27d73b14d9252b9f89fc5eb /src/emu/memory.cpp | |
parent | f7df7553f0ebba7b69fe8afcfe5701af164c1fb3 (diff) |
Fix some oversights in previous changes, sorry guys'n'gals
Diffstat (limited to 'src/emu/memory.cpp')
-rw-r--r-- | src/emu/memory.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/emu/memory.cpp b/src/emu/memory.cpp index b4f6cacfff2..f5ebf5e3361 100644 --- a/src/emu/memory.cpp +++ b/src/emu/memory.cpp @@ -675,8 +675,8 @@ private: { m_space.device().logerror( m_space.is_octal() - ? "%s: unmapped %s memory read from %*o & %*o\n" - : "%s: unmapped %s memory read from %*X & %*X\n", + ? "%s: unmapped %s memory read from %0*o & %0*o\n" + : "%s: unmapped %s memory read from %0*X & %0*X\n", m_space.machine().describe_context(), m_space.name(), m_space.addrchars(), m_space.byte_to_address(offset * sizeof(_UintType)), 2 * sizeof(_UintType), mask); @@ -746,8 +746,8 @@ private: { m_space.device().logerror( m_space.is_octal() - ? "%s: unmapped %s memory write to %*o = %*o & %*o\n" - : "%s: unmapped %s memory write to %*X = %*X & %*X\n", + ? "%s: unmapped %s memory write to %0*o = %0*o & %0*o\n" + : "%s: unmapped %s memory write to %0*X = %0*X & %0*X\n", m_space.machine().describe_context(), m_space.name(), m_space.addrchars(), m_space.byte_to_address(offset * sizeof(_UintType)), 2 * sizeof(_UintType), data, |