diff options
author | 2010-06-25 15:30:51 +0000 | |
---|---|---|
committer | 2010-06-25 15:30:51 +0000 | |
commit | 50767de7072d0a751840cd794af21da52e02c487 (patch) | |
tree | 9eb3b45540d5320390785db869fe6cdbea42492a /src/emu/machine/z80sti.h | |
parent | 25c55116100e1e3bd99e992ef81fb7ecdb05575a (diff) |
Changed device name from an overridable function to a parameter passed to
the device_config constructor. In situations where the proper name is not
known at construction time, a generic name can be specified and then
overridden later once the configuration is complete.
Diffstat (limited to 'src/emu/machine/z80sti.h')
-rw-r--r-- | src/emu/machine/z80sti.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/emu/machine/z80sti.h b/src/emu/machine/z80sti.h index 586fc2e13d7..f15104e947d 100644 --- a/src/emu/machine/z80sti.h +++ b/src/emu/machine/z80sti.h @@ -106,9 +106,6 @@ public: static device_config *static_alloc_device_config(const machine_config &mconfig, const char *tag, const device_config *owner, UINT32 clock); virtual device_t *alloc_device(running_machine &machine) const; - // basic information getters - virtual const char *name() const { return "Mostek MK3801"; } - protected: // device_config overrides virtual void device_config_complete(); |