summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/emu/tilemap.cpp4
-rw-r--r--src/mame/novag/diablo.cpp3
2 files changed, 6 insertions, 1 deletions
diff --git a/src/emu/tilemap.cpp b/src/emu/tilemap.cpp
index 1aa18eef168..8c4e20e158f 100644
--- a/src/emu/tilemap.cpp
+++ b/src/emu/tilemap.cpp
@@ -1556,6 +1556,10 @@ void tilemap_t::draw_debug(screen_device &screen, bitmap_rgb32 &dest, u32 scroll
void tilemap_t::get_info_debug(u32 col, u32 row, u8 &gfxnum, u32 &code, u32 &color)
{
// first map to the memory index
+ if (m_attributes & TILEMAP_FLIPX)
+ col = (m_cols - 1) - col;
+ if (m_attributes & TILEMAP_FLIPY)
+ row = (m_rows - 1) - row;
tilemap_memory_index memindex = memory_index(col, row);
// next invoke the get info callback
diff --git a/src/mame/novag/diablo.cpp b/src/mame/novag/diablo.cpp
index e25f63e8880..e6730d318e1 100644
--- a/src/mame/novag/diablo.cpp
+++ b/src/mame/novag/diablo.cpp
@@ -7,7 +7,8 @@ Novag Diablo 68000 (model 908)
Novag Scorpio 68000 (model 909)
Hardware notes (Diablo 68000):
-- M68000 @ 16MHz, IPL1 256Hz, IPL2 from ACIA IRQ(always high)
+- PCB label: 100126 REV-2
+- TMP68HC000P-16 @ 16MHz, IPL1 256Hz, IPL2 from ACIA IRQ(always high)
- 2*8KB RAM TC5565 battery-backed, 2*32KB hashtable RAM TC55257
- 3*32KB ROM (27C256 or equivalent)
- HD44780A00 LCD controller (16x1)