summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decospr.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decospr.h')
-rw-r--r--src/mame/video/decospr.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mame/video/decospr.h b/src/mame/video/decospr.h
index 38489ae631d..f1a2922ed97 100644
--- a/src/mame/video/decospr.h
+++ b/src/mame/video/decospr.h
@@ -20,8 +20,8 @@ public:
decospr_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock);
// configuration
- void set_gfxdecode_tag(const char *tag);
- void set_gfx_region(int gfxregion);
+ void set_gfxdecode_tag(const char *tag) { m_gfxdecode.set_tag(tag); }
+ void set_gfx_region(int gfxregion) { m_gfxregion = gfxregion; }
void set_pri_callback(decospr_pri_cb_delegate callback) { m_pri_cb = callback; }
void set_col_callback(decospr_col_cb_delegate callback) { m_col_cb = callback; }
void set_is_bootleg(bool is_bootleg) { m_is_bootleg = is_bootleg; }