mirror of
https://github.com/holub/mame
synced 2025-04-22 16:31:49 +03:00
video: stop frameskipping constantly on screenless systems with frameskip=0 (nw)
This commit is contained in:
parent
24e156ac48
commit
33383cdaa7
@ -849,9 +849,10 @@ bool video_manager::finish_screen_updates()
|
||||
for (screen_device &screen : iter)
|
||||
screen.update_partial(screen.visible_area().max_y);
|
||||
|
||||
// now add the quads for all the screens
|
||||
bool anything_changed = m_output_changed;
|
||||
bool anything_changed = (iter.count() == 0) || m_output_changed;
|
||||
m_output_changed = false;
|
||||
|
||||
// now add the quads for all the screens
|
||||
for (screen_device &screen : iter)
|
||||
if (screen.update_quads())
|
||||
anything_changed = true;
|
||||
|
Loading…
Reference in New Issue
Block a user