diff options
-rw-r--r-- | src/emu/video.cpp | 2 |
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 |