From b7f4c4bd2084970f3ec41057a6bafbba96a2386a Mon Sep 17 00:00:00 2001 From: Miodrag Milanovic Date: Thu, 19 Nov 2015 19:44:23 +0100 Subject: Fixed uninitialized class members --- src/devices/video/msm6222b.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/devices/video/msm6222b.cpp') diff --git a/src/devices/video/msm6222b.cpp b/src/devices/video/msm6222b.cpp index f6c2c9564a3..a8e0d41c673 100644 --- a/src/devices/video/msm6222b.cpp +++ b/src/devices/video/msm6222b.cpp @@ -22,12 +22,12 @@ ROM_START( msm6222b_01 ) ROM_END msm6222b_device::msm6222b_device(const machine_config &mconfig, device_type type, const char *name, const char *tag, device_t *owner, UINT32 clock, const char *shortname, const char *source) : - device_t(mconfig, type, name, tag, owner, clock, shortname, source) + device_t(mconfig, type, name, tag, owner, clock, shortname, source), cursor_direction(false), cursor_blinking(false), two_line(false), shift_on_write(false), double_height(false), cursor_on(false), display_on(false), adc(0), shift(0), cgrom(nullptr) { } msm6222b_device::msm6222b_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock) : - device_t(mconfig, MSM6222B, "msm6222b-xx", tag, owner, clock, "msm6222b", __FILE__) + device_t(mconfig, MSM6222B, "msm6222b-xx", tag, owner, clock, "msm6222b", __FILE__), cursor_direction(false), cursor_blinking(false), two_line(false), shift_on_write(false), double_height(false), cursor_on(false), display_on(false), adc(0), shift(0), cgrom(nullptr) { } -- cgit v1.2.3-70-g09d2