diff options
author | 2013-03-26 15:18:37 +0000 | |
---|---|---|
committer | 2013-03-26 15:18:37 +0000 | |
commit | 051011971f9cce5ce1d99a9bfcf691bcf7975448 (patch) | |
tree | 7553b5907c3e67e02e4fd0a20f9f07e21a6c08ca /src/emu/video/hd44780.h | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/emu/video/hd44780.h')
-rw-r--r-- | src/emu/video/hd44780.h | 2 |
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; } |