mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
screen: don't assert on update_partial with scanline<0, plenty drivers do update_partial(vpos-1) (nw)
This commit is contained in:
parent
474a76b00d
commit
45d6edf081
@ -1057,9 +1057,6 @@ void screen_device::set_visible_area(int min_x, int max_x, int min_y, int max_y)
|
||||
|
||||
bool screen_device::update_partial(int scanline)
|
||||
{
|
||||
// validate arguments
|
||||
assert(scanline >= 0);
|
||||
|
||||
LOG_PARTIAL_UPDATES(("Partial: update_partial(%s, %d): ", tag(), scanline));
|
||||
|
||||
// these two checks only apply if we're allowed to skip frames
|
||||
|
Loading…
Reference in New Issue
Block a user