diff options
Diffstat (limited to 'src/emu/screen.cpp')
-rw-r--r-- | src/emu/screen.cpp | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/src/emu/screen.cpp b/src/emu/screen.cpp index 835e12995f5..db6f7c91ad4 100644 --- a/src/emu/screen.cpp +++ b/src/emu/screen.cpp @@ -546,7 +546,7 @@ screen_device::screen_device(const machine_config &mconfig, const char *tag, dev , m_scanline_cb(*this) , m_palette(*this, finder_base::DUMMY_TAG) , m_video_attributes(0) - , m_svg_region(tag) + , m_svg_region(*this, DEVICE_SELF) , m_container(nullptr) , m_width(100) , m_height(100) @@ -717,10 +717,9 @@ void screen_device::device_start() if (m_type == SCREEN_TYPE_SVG) { - memory_region *reg = owner()->memregion(m_svg_region); - if (!reg) - fatalerror("%s: SVG region \"%s\" does not exist\n", tag(), m_svg_region); - m_svg = std::make_unique<svg_renderer>(reg); + 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()); // don't do this - SVG units are arbitrary and interpreting them as pixels causes bad things to happen |