summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/drivers/microterm.cpp
diff options
context:
space:
mode:
author AJR <ajrhacker@users.noreply.github.com>2018-03-08 20:58:23 -0500
committer AJR <ajrhacker@users.noreply.github.com>2018-03-08 20:58:26 -0500
commit98db2721c548d0a598904244403c356a40ff2ece (patch)
treeeb37a43fcf4829cdca3b1d978b8bcf9fda6222cf /src/mame/drivers/microterm.cpp
parentb867aeded5c64acdd7f340448633ec72dfdc742c (diff)
scn2674: Use same character width for text and graphics modes (nw)
This change has been made partly to bring the implementation in line with other character-based video devices. It is also consistent with the documented ability of the SCN2674 to combine text and graphics modes on the same screen, which rules out bitmap resolution changes.
Diffstat (limited to 'src/mame/drivers/microterm.cpp')
-rw-r--r--src/mame/drivers/microterm.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mame/drivers/microterm.cpp b/src/mame/drivers/microterm.cpp
index 70a3d096028..497be7384d0 100644
--- a/src/mame/drivers/microterm.cpp
+++ b/src/mame/drivers/microterm.cpp
@@ -110,8 +110,7 @@ MACHINE_CONFIG_START(microterm_state::mt420)
MCFG_DEVICE_ADD("avdc", SCN2674, XTAL(9'877'680) / 6)
//MCFG_DEVICE_CLOCK(XTAL(15'300'720) / 6)
- MCFG_SCN2674_TEXT_CHARACTER_WIDTH(6)
- MCFG_SCN2674_GFX_CHARACTER_WIDTH(6)
+ MCFG_SCN2674_CHARACTER_WIDTH(6)
MCFG_SCN2674_DRAW_CHARACTER_CALLBACK_OWNER(microterm_state, draw_character)
MCFG_DEVICE_ADDRESS_MAP(0, mt420_vram_map)
MCFG_VIDEO_SET_SCREEN("screen")