summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/decbac06.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/decbac06.h')
-rw-r--r--src/mame/video/decbac06.h9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/mame/video/decbac06.h b/src/mame/video/decbac06.h
index 6fc4b8ae98b..7b7e19a0d8f 100644
--- a/src/mame/video/decbac06.h
+++ b/src/mame/video/decbac06.h
@@ -23,8 +23,13 @@ public:
deco_bac06_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_wide(int region8x8, int region16x16, int wide);
+ void set_gfxdecode_tag(const char *tag) { m_gfxdecode.set_tag(tag); }
+ void set_gfx_region_wide(int region8x8, int region16x16, int wide)
+ {
+ m_gfxregion8x8 = region8x8;
+ m_gfxregion16x16 = region16x16;
+ m_wide = wide;
+ }
void disable_8x8() { m_supports_8x8 = false; }
void disable_16x16() { m_supports_16x16 = false; }
void disable_rc_scroll() { m_supports_rc_scroll = false; }