diff options
author | 2013-01-11 07:32:46 +0000 | |
---|---|---|
committer | 2013-01-11 07:32:46 +0000 | |
commit | 0e19f641d3186cdbf51f8ca857e2b07ab95779c2 (patch) | |
tree | 234109de1123b13f217494af4b3f8efad346d5cc /src/mess/machine/pc_lpt.h | |
parent | 111157ca09a9ff60fe4a9ba49173c315e94314fa (diff) |
Cleanups and version bumpmame0148
Diffstat (limited to 'src/mess/machine/pc_lpt.h')
-rw-r--r-- | src/mess/machine/pc_lpt.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/machine/pc_lpt.h b/src/mess/machine/pc_lpt.h index c29946ed9b5..549b62db4be 100644 --- a/src/mess/machine/pc_lpt.h +++ b/src/mess/machine/pc_lpt.h @@ -79,8 +79,8 @@ class isa8_lpt_device : public device_isa8_card_interface { public: - // construction/destruction - isa8_lpt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); + // construction/destruction + isa8_lpt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); // optional information overrides virtual machine_config_constructor device_mconfig_additions() const; @@ -88,12 +88,12 @@ public: bool is_primary() { return m_is_primary; } protected: - // device-level overrides - virtual void device_start(); - virtual void device_reset(); + // device-level overrides + virtual void device_start(); + virtual void device_reset(); virtual void device_config_complete() { m_shortname = "isa_lpt"; } private: - // internal state + // internal state bool m_is_primary; }; |