nmk/nmk16.cpp: Fix max sprite clock related to screen size (#12559)

This commit is contained in:
cam900 2024-07-09 21:07:39 +09:00 committed by GitHub
parent 81284c68ca
commit 51d9f82820
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -3886,7 +3886,7 @@ void nmk16_state::set_hacky_screen_hires(machine_config &config)
NMK_16BIT_SPRITE(config, m_spritegen, XTAL(16'000'000)/2);
m_spritegen->set_screen_size(28+412, 16+240);
m_spritegen->set_max_sprite_clock(384 * 263); // not verified?
m_spritegen->set_max_sprite_clock(512 * 263); // not verified?
m_spritegen->set_videoshift(28+64);
}