summaryrefslogtreecommitdiffstatshomepage
path: root/src/mame/video/911_vdt.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mame/video/911_vdt.cpp')
-rw-r--r--src/mame/video/911_vdt.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mame/video/911_vdt.cpp b/src/mame/video/911_vdt.cpp
index 56d450c5d77..81391c9f515 100644
--- a/src/mame/video/911_vdt.cpp
+++ b/src/mame/video/911_vdt.cpp
@@ -45,7 +45,7 @@ static const gfx_layout fontlayout_8bit =
10*8 /* every char takes 10 consecutive bytes */
};
-static GFXDECODE_START( vdt911 )
+static GFXDECODE_START( gfx_vdt911 )
// Caution: Array must use same order as vdt911_model_t
// US
GFXDECODE_ENTRY( vdt911_chr_region, vdt911_device::US_chr_offset, fontlayout_7bit, 0, 4 )
@@ -148,11 +148,11 @@ static void apply_char_overrides(int nb_char_overrides, const char_override_t ch
DEFINE_DEVICE_TYPE(VDT911, vdt911_device, "vdt911", "911 VDT")
vdt911_device::vdt911_device(const machine_config &mconfig, const char *tag, device_t *owner, uint32_t clock)
- : device_t(mconfig, VDT911, tag, owner, clock),
- device_gfx_interface(mconfig, *this, GFXDECODE_NAME(vdt911), "palette"),
- m_beeper(*this, "beeper"),
- m_keyint_line(*this),
- m_lineint_line(*this)
+ : device_t(mconfig, VDT911, tag, owner, clock)
+ , device_gfx_interface(mconfig, *this, gfx_vdt911, "palette")
+ , m_beeper(*this, "beeper")
+ , m_keyint_line(*this)
+ , m_lineint_line(*this)
{
}