diff options
author | 2020-06-21 14:59:50 +1000 | |
---|---|---|
committer | 2020-06-21 14:59:50 +1000 | |
commit | 01661be41c37560a37f2b43c5ecee7a10a6a1680 (patch) | |
tree | c4358e0e280d408c6c8fda78d7b42badc3a6dd65 /src/emu/dirom.ipp | |
parent | 8ef400ec670184e189763e75abd1519046d85bbf (diff) |
srcclean and cleanup (nw)
Diffstat (limited to 'src/emu/dirom.ipp')
-rw-r--r-- | src/emu/dirom.ipp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/dirom.ipp b/src/emu/dirom.ipp index 42447932df9..e552ff87e22 100644 --- a/src/emu/dirom.ipp +++ b/src/emu/dirom.ipp @@ -15,8 +15,8 @@ template<int AddrWidth, int DataWidth, int AddrShift, endianness_t Endian> void device_rom_interface<AddrWidth, DataWidth, AddrShift, Endian>::override_address_width(u8 width) { // cach does not need level match, only specific does at this point - // if(emu::detail::handler_entry_dispatch_level(AddrWidth) != emu::detail::handler_entry_dispatch_level(width)) - // emu_fatalerror("%s: Widths %d and %d are incompatible", device().tag(), width, AddrWidth); + // if(emu::detail::handler_entry_dispatch_level(AddrWidth) != emu::detail::handler_entry_dispatch_level(width)) + // emu_fatalerror("%s: Widths %d and %d are incompatible", device().tag(), width, AddrWidth); m_rom_config.m_addr_width = width; } |