diff options
author | 2011-02-11 10:10:39 +0000 | |
---|---|---|
committer | 2011-02-11 10:10:39 +0000 | |
commit | fd5b5140a521fcb161f1203b0b092e6324bd928f (patch) | |
tree | c9545d260b739ff1f1a428decc20bff86a89fc70 /src/emu/machine/74123.c | |
parent | 391c093c966fea35dd56cb7a6baa463ec9e0181e (diff) |
Removed short name as parameter from device_config this way it is not mandatory any more.
Most of files is rolled back to previous state. (no whatsnew)
Diffstat (limited to 'src/emu/machine/74123.c')
-rw-r--r-- | src/emu/machine/74123.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/74123.c b/src/emu/machine/74123.c index 5ded2c1c19c..2ab8ff8619f 100644 --- a/src/emu/machine/74123.c +++ b/src/emu/machine/74123.c @@ -30,7 +30,7 @@ const device_type TTL74123 = ttl74123_device_config::static_alloc_device_config; //------------------------------------------------- ttl74123_device_config::ttl74123_device_config(const machine_config &mconfig, const char *tag, const device_config *owner, UINT32 clock) - : device_config(mconfig, static_alloc_device_config, "TTL74123", "74123", tag, owner, clock) + : device_config(mconfig, static_alloc_device_config, "TTL74123", tag, owner, clock) { } |