summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/video/hd44780.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/emu/video/hd44780.h')
-rw-r--r--src/emu/video/hd44780.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/video/hd44780.h b/src/emu/video/hd44780.h
index 9f6f5f84792..21649a234ab 100644
--- a/src/emu/video/hd44780.h
+++ b/src/emu/video/hd44780.h
@@ -37,7 +37,7 @@ class hd44780_device : public device_t
public:
// construction/destruction
hd44780_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock);
- hd44780_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock);
+ hd44780_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source);
// static configuration helpers
static void static_set_lcd_size(device_t &device, int _lines, int _chars) { hd44780_device &dev=downcast<hd44780_device &>(device); dev.m_lines = _lines; dev.m_chars = _chars; }