diff options
| author | 2021-11-23 01:25:34 +1300 | |
|---|---|---|
| committer | 2021-11-22 23:41:44 +1100 | |
| commit | 8077a9e633f73b31bba0aad1c36575c46b4ab47d (patch) | |
| tree | a1ed9e51b41ed35d1f4035c77321ab24f5c5780f /src | |
| parent | 046d63d01db754cbcf0eb55ee5989cfbe646fc70 (diff) | |
fmtowns: disable FMR backwards compatibility text rendering, fixes display regression
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/video/fmtowns.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/video/fmtowns.cpp b/src/mame/video/fmtowns.cpp index 54f22f7af31..b45cd75d6d2 100644 --- a/src/mame/video/fmtowns.cpp +++ b/src/mame/video/fmtowns.cpp @@ -1358,6 +1358,7 @@ void towns_state::towns_crtc_draw_layer(bitmap_rgb32 &bitmap,const rectangle* re void towns_state::render_text_char(uint8_t x, uint8_t y, uint8_t ascii, uint16_t jis, uint8_t attr) { +#if 0 uint32_t rom_addr; uint32_t vram_addr; uint16_t linesize = m_video.towns_crtc_reg[24] * 4; @@ -1428,6 +1429,7 @@ void towns_state::render_text_char(uint8_t x, uint8_t y, uint8_t ascii, uint16_t vram_addr += linesize; vram_addr &= 0x3ffff; } +#endif } void towns_state::draw_text_layer() |
