diff options
Diffstat (limited to 'src/mame/video/deckarn.cpp')
-rw-r--r-- | src/mame/video/deckarn.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mame/video/deckarn.cpp b/src/mame/video/deckarn.cpp index bde0dba82ab..c54486bac5b 100644 --- a/src/mame/video/deckarn.cpp +++ b/src/mame/video/deckarn.cpp @@ -15,9 +15,9 @@ void deco_karnovsprites_device::set_gfx_region(device_t &device, int region) const device_type DECO_KARNOVSPRITES = &device_creator<deco_karnovsprites_device>; deco_karnovsprites_device::deco_karnovsprites_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) - : device_t(mconfig, DECO_KARNOVSPRITES, "DECO Karnov Sprites", tag, owner, clock, "deco_karnovsprites", __FILE__), - m_gfxregion(0), - m_gfxdecode(*this) + : device_t(mconfig, DECO_KARNOVSPRITES, "DECO Karnov Sprites", tag, owner, clock, "deco_karnovsprites", __FILE__) + , m_gfxregion(0) + , m_gfxdecode(*this, finder_base::DUMMY_TAG) { } |