diff options
| author | 2024-07-21 13:37:13 +0200 | |
|---|---|---|
| committer | 2024-07-21 13:37:13 +0200 | |
| commit | fbb439678dc03d754de588c84acdbdf78dd1246f (patch) | |
| tree | 8f4d4038c257b24ff88a4b4dcba4c71d0a65682d /src | |
| parent | 4b5f852c5a61583bae942c6ec063e8971530112a (diff) | |
sharp/x1.cpp: hookup screen.set_default_position
Diffstat (limited to 'src')
| -rw-r--r-- | src/mame/sharp/x1.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mame/sharp/x1.cpp b/src/mame/sharp/x1.cpp index 5cc34a06d31..77c292b16c7 100644 --- a/src/mame/sharp/x1.cpp +++ b/src/mame/sharp/x1.cpp @@ -2214,6 +2214,8 @@ void x1_state::x1(machine_config &config) m_screen->set_size(640, 480); m_screen->set_visarea(0, 640-1, 0, 480-1); m_screen->set_screen_update(FUNC(x1_state::screen_update_x1)); + // add a saner default for both interlace and progressive modes + m_screen->set_default_position(1.100, 0.050, 1.100, 0.050); HD6845S(config, m_crtc, (VDP_CLOCK/48)); //unknown divider m_crtc->set_screen(m_screen); |
