diff options
Diffstat (limited to 'src/emu/tilemap.cpp')
-rw-r--r-- | src/emu/tilemap.cpp | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/emu/tilemap.cpp b/src/emu/tilemap.cpp index 2e2b14f5086..d1db7ea6082 100644 --- a/src/emu/tilemap.cpp +++ b/src/emu/tilemap.cpp @@ -1457,12 +1457,16 @@ void tilemap_t::draw_roz_core(screen_device &screen, _BitmapClass &destbitmap, c // rowscroll and with fixed parameters //------------------------------------------------- -void tilemap_t::draw_debug(screen_device &screen, bitmap_rgb32 &dest, u32 scrollx, u32 scrolly) +void tilemap_t::draw_debug(screen_device &screen, bitmap_rgb32 &dest, u32 scrollx, u32 scrolly, u32 flags) { // set up for the blit, using hard-coded parameters (no priority, etc) blit_parameters blit; bitmap_ind8 dummy_priority; - configure_blit_parameters(blit, dummy_priority, dest.cliprect(), TILEMAP_DRAW_OPAQUE | TILEMAP_DRAW_ALL_CATEGORIES, 0, 0xff); + + // draw everything + flags |= TILEMAP_DRAW_OPAQUE; + + configure_blit_parameters(blit, dummy_priority, dest.cliprect(), flags, 0, 0xff); // compute the effective scroll positions scrollx = m_width - scrollx % m_width; |