summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/video/crt.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/video/crt.c')
-rw-r--r--src/mess/video/crt.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/mess/video/crt.c b/src/mess/video/crt.c
index 557b4b7ef17..9340ad87d53 100644
--- a/src/mess/video/crt.c
+++ b/src/mess/video/crt.c
@@ -50,14 +50,14 @@ const device_type CRT = &device_creator<crt_device>;
crt_device::crt_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock)
: device_t(mconfig, CRT, "CRT Video", tag, owner, clock),
- m_list(NULL),
- m_list_head(NULL),
- m_decay_counter(0),
- m_num_intensity_levels(0),
- m_window_offset_x(0),
- m_window_offset_y(0),
- m_window_width(0),
- m_window_height(0)
+ m_list(NULL),
+ m_list_head(NULL),
+ m_decay_counter(0),
+ m_num_intensity_levels(0),
+ m_window_offset_x(0),
+ m_window_offset_y(0),
+ m_window_width(0),
+ m_window_height(0)
{
}