summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/screen.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/screen.cpp')
-rw-r--r--src/emu/screen.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/screen.cpp b/src/emu/screen.cpp
index ad62bda0688..1a1c5dee8ad 100644
--- a/src/emu/screen.cpp
+++ b/src/emu/screen.cpp
@@ -794,7 +794,7 @@ void screen_device::device_start()
if (!m_svg_region)
fatalerror("%s: SVG region \"%s\" does not exist\n", tag(), m_svg_region.finder_tag());
m_svg = std::make_unique<svg_renderer>(m_svg_region);
- machine().output().set_notifier(nullptr, svg_renderer::output_notifier, m_svg.get());
+ machine().output().set_global_notifier(svg_renderer::output_notifier, m_svg.get());
// don't do this - SVG units are arbitrary and interpreting them as pixels causes bad things to happen
// just render at the size/aspect ratio supplied by the driver