summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video.cpp')
-rw-r--r--src/emu/video.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/emu/video.cpp b/src/emu/video.cpp
index 749e9113464..a4b02e2e2f3 100644
--- a/src/emu/video.cpp
+++ b/src/emu/video.cpp
@@ -16,6 +16,7 @@
#include "rendersw.hxx"
#include "output.h"
+#include "corestr.h"
#include "png.h"
#include "xmlfile.h"
@@ -173,7 +174,7 @@ video_manager::video_manager(running_machine &machine)
{
m_screenless_frame_timer = machine.scheduler().timer_alloc(timer_expired_delegate(FUNC(video_manager::screenless_update_callback), this));
m_screenless_frame_timer->adjust(screen_device::DEFAULT_FRAME_PERIOD, 0, screen_device::DEFAULT_FRAME_PERIOD);
- machine.output().set_notifier(nullptr, video_notifier_callback, this);
+ machine.output().set_global_notifier(video_notifier_callback, this);
}
}