diff options
Diffstat (limited to 'src/emu/tilemap.c')
-rw-r--r-- | src/emu/tilemap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/emu/tilemap.c b/src/emu/tilemap.c index b840114ff49..5fa27bb0a4f 100644 --- a/src/emu/tilemap.c +++ b/src/emu/tilemap.c @@ -1715,9 +1715,9 @@ void tilemap_device::device_start() { // check configuration if (m_get_info.isnull()) - throw emu_fatalerror("Tilemap device '%s' has no get info callback!"); + throw emu_fatalerror("Tilemap device '%s' has no get info callback!", tag()); if (m_standard_mapper == TILEMAP_STANDARD_COUNT && m_mapper.isnull()) - throw emu_fatalerror("Tilemap device '%s' has no mapper callback!"); + throw emu_fatalerror("Tilemap device '%s' has no mapper callback!", tag()); // bind our callbacks m_get_info.bind_relative_to(*owner()); |