mirror of
https://github.com/holub/mame
synced 2025-04-23 00:39:36 +03:00
Merge pull request #5634 from vadosnaprimer/throttling_tweak
Don't force throttling while paused
This commit is contained in:
commit
deb672ba98
@ -808,7 +808,7 @@ int video_manager::effective_frameskip() const
|
||||
inline bool video_manager::effective_throttle() const
|
||||
{
|
||||
// if we're paused, or if the UI is active, we always throttle
|
||||
if (machine().paused()) //|| machine().ui().is_menu_active())
|
||||
if (machine().paused() && !machine().options().update_in_pause()) //|| machine().ui().is_menu_active())
|
||||
return true;
|
||||
|
||||
// if we're fast forwarding, we don't throttle
|
||||
|
Loading…
Reference in New Issue
Block a user