summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/includes/pcw.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/includes/pcw.h')
-rw-r--r--src/mess/includes/pcw.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/mess/includes/pcw.h b/src/mess/includes/pcw.h
index b64ade497fc..a1b449994ca 100644
--- a/src/mess/includes/pcw.h
+++ b/src/mess/includes/pcw.h
@@ -28,11 +28,11 @@ class pcw_state : public driver_device
public:
pcw_state(const machine_config &mconfig, device_type type, const char *tag)
: driver_device(mconfig, type, tag),
- m_maincpu(*this, "maincpu"),
- m_screen(*this, "screen"),
- m_fdc(*this, "upd765"),
- m_ram(*this, RAM_TAG),
- m_beeper(*this, "beeper")
+ m_maincpu(*this, "maincpu"),
+ m_screen(*this, "screen"),
+ m_fdc(*this, "upd765"),
+ m_ram(*this, RAM_TAG),
+ m_beeper(*this, "beeper")
{ }
int m_boot;
@@ -122,7 +122,7 @@ public:
required_device<upd765a_device> m_fdc;
required_device<ram_device> m_ram;
required_device<beep_device> m_beeper;
-
+
inline void pcw_plot_pixel(bitmap_ind16 &bitmap, int x, int y, UINT32 color);
void pcw_update_interrupt_counter();
void pcw_update_irqs();