From 42628862da684ddf644be4e40070c6ea02544d0b Mon Sep 17 00:00:00 2001 From: smf- Date: Sun, 29 Sep 2019 20:24:45 +0100 Subject: [PATCH] another fix for Visual Studio 2019 (nw) --- src/devices/video/crt9028.cpp | 4 ++-- src/devices/video/crt9028.h | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/devices/video/crt9028.cpp b/src/devices/video/crt9028.cpp index 31c0c748420..07f877e3095 100644 --- a/src/devices/video/crt9028.cpp +++ b/src/devices/video/crt9028.cpp @@ -45,8 +45,8 @@ DEFINE_DEVICE_TYPE(CRT9028_000, crt9028_000_device, "crt9028_000", "CRT9028-000 crt9028_device::crt9028_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int dots_per_char, int chars_per_row, int horiz_blanking, int hsync_delay, int hsync_width, bool hsync_active, int char_rows, int scans_per_char, bool vsync_active, - int vert_blanking, int vsync_delay, bool vsync_width, - int alt_vert_blanking, int alt_vsync_delay, bool alt_vsync_width, + int vert_blanking, int vsync_delay, int vsync_width, + int alt_vert_blanking, int alt_vsync_delay, int alt_vsync_width, int csync_delay, int csync_width, int underline, u16 wide_gfx_seg1_4, u16 wide_gfx_seg2_5, u16 wide_gfx_seg3_6, u8 wide_gfx_pattern, u16 thin_gfx_seg1, u16 thin_gfx_seg2, u16 thin_gfx_seg3, u16 thin_gfx_seg4, diff --git a/src/devices/video/crt9028.h b/src/devices/video/crt9028.h index f0696519ed9..d8aa637c06a 100644 --- a/src/devices/video/crt9028.h +++ b/src/devices/video/crt9028.h @@ -59,8 +59,8 @@ protected: crt9028_device(const machine_config &mconfig, device_type type, const char *tag, device_t *owner, u32 clock, int dots_per_char, int chars_per_row, int horiz_blanking, int hsync_delay, int hsync_width, bool hsync_active, int char_rows, int scans_per_char, bool vsync_active, - int vert_blanking, int vsync_delay, bool vsync_width, - int alt_vert_blanking, int alt_vsync_delay, bool alt_vsync_width, + int vert_blanking, int vsync_delay, int vsync_width, + int alt_vert_blanking, int alt_vsync_delay, int alt_vsync_width, int csync_delay, int csync_width, int underline, u16 wide_gfx_seg1_4, u16 wide_gfx_seg2_5, u16 wide_gfx_seg3_6, u8 wide_gfx_pattern, u16 thin_gfx_seg1, u16 thin_gfx_seg2, u16 thin_gfx_seg3, u16 thin_gfx_seg4,