summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video/bufsprite.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/video/bufsprite.h')
-rw-r--r--src/devices/video/bufsprite.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/devices/video/bufsprite.h b/src/devices/video/bufsprite.h
index 3a75f5a14f6..7e8606f454b 100644
--- a/src/devices/video/bufsprite.h
+++ b/src/devices/video/bufsprite.h
@@ -55,7 +55,7 @@ public:
// construction
buffered_spriteram_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, type, "Buffered Sprite RAM", tag, owner, clock, "buffered_spriteram", __FILE__),
- m_spriteram(*owner, tag) { }
+ m_spriteram(*this, DEVICE_SELF) { }
// getters
_Type *live() const { return m_spriteram; }