nyny.cpp, spiders.cpp: Replace bogus "temporary" screen parameters with correct CRTC configuration, making reported refresh rates more reasonable

This commit is contained in:
AJR 2020-12-19 12:25:44 -05:00
parent 4398c6bbfd
commit ff64fadcd9
2 changed files with 2 additions and 2 deletions

View File

@ -610,7 +610,7 @@ void nyny_state::nyny(machine_config &config)
/* video hardware */
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_raw(PIXEL_CLOCK, 256, 0, 256, 256, 0, 256); /* temporary, CRTC will configure screen */
screen.set_raw(PIXEL_CLOCK, 360, 0, 256, 276, 0, 224);
screen.set_screen_update("crtc", FUNC(mc6845_device::screen_update));
PALETTE(config, m_palette, palette_device::RGB_3BIT);

View File

@ -515,7 +515,7 @@ void spiders_state::spiders(machine_config &config)
/* video hardware */
screen_device &screen(SCREEN(config, "screen", SCREEN_TYPE_RASTER));
screen.set_raw(PIXEL_CLOCK, 256, 0, 256, 256, 0, 256); /* temporary, CRTC will configure screen */
screen.set_raw(PIXEL_CLOCK, 360, 0, 256, 276, 0, 224);
screen.set_screen_update("crtc", FUNC(mc6845_device::screen_update));
PALETTE(config, m_palette, palette_device::RGB_3BIT);