From feb253dbfd94c37a23e52d0c179d87c38b6e952f Mon Sep 17 00:00:00 2001 From: feos Date: Sat, 14 Sep 2019 19:59:30 +0300 Subject: don't force throttling while paused --- src/emu/video.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 -- cgit v1.2.3