summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/vsystem_spr2.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/vsystem_spr2.h')
-rw-r--r--src/mame/video/vsystem_spr2.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/video/vsystem_spr2.h b/src/mame/video/vsystem_spr2.h
index 13bcc4d9acd..87e28ecff9e 100644
--- a/src/mame/video/vsystem_spr2.h
+++ b/src/mame/video/vsystem_spr2.h
@@ -12,7 +12,7 @@ class vsystem_spr2_device : public device_t
public:
// configuration
template <typename T> void set_gfxdecode_tag(T &&tag) { m_gfxdecode.set_tag(std::forward<T>(tag)); }
- template <typename... T> void set_tile_indirect_cb(T &&... args) { m_newtilecb = vsystem_tile2_indirection_delegate(std::forward<T>(args)...); }
+ template <typename... T> void set_tile_indirect_cb(T &&... args) { m_newtilecb.set(std::forward<T>(args)...); }
void set_pritype(int pritype) { m_pritype = pritype; }
void set_gfx_region(int gfx_region) { m_gfx_region = gfx_region; }
void set_offsets(int xoffs, int yoffs)