summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
author feos <feos-theos@yandex.ru>2019-09-14 19:59:30 +0300
committer feos <feos-theos@yandex.ru>2019-09-14 20:01:07 +0300
commitfeb253dbfd94c37a23e52d0c179d87c38b6e952f (patch)
treedd6ddf10ea369762de0d53e81a55d5338e491a44
parent2f39181ac1e093b42a6ff17b49013cfadb02e7a9 (diff)
don't force throttling while paused
-rw-r--r--src/emu/video.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video.cpp b/src/emu/video.cpp
index 03a251d3171..e253afcfc4a 100644
--- a/src/emu/video.cpp
+++ b/src/emu/video.cpp
@@ -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