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/machine/ldpr8210.h | |
parent | ffbe9bdcca43cb1f645cc0387f0835523471b97a (diff) |
Expanded device_t constructor with parameters for short name and source file location [Miodrag Milanovic]
Diffstat (limited to 'src/emu/machine/ldpr8210.h')
-rw-r--r-- | src/emu/machine/ldpr8210.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/ldpr8210.h b/src/emu/machine/ldpr8210.h index bcc8fdbcf7a..baef48f1731 100644 --- a/src/emu/machine/ldpr8210.h +++ b/src/emu/machine/ldpr8210.h @@ -94,7 +94,7 @@ class pioneer_pr8210_device : public laserdisc_device public: // construction/destruction pioneer_pr8210_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); - pioneer_pr8210_device(const machine_config &mconfig, device_type type, const char *name, const char *shortname, const char *tag, device_t *owner, UINT32 clock); + pioneer_pr8210_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); // input and output void control_w(UINT8 data); |