summaryrefslogtreecommitdiffstatshomepage
path: root/src/devices/video
diff options
context:
space:
mode:
author smf- <smf-@users.noreply.github.com>2019-09-29 20:24:45 +0100
committer smf- <smf-@users.noreply.github.com>2019-09-29 20:24:45 +0100
commit42628862da684ddf644be4e40070c6ea02544d0b (patch)
tree10adad20e14bd9e4a91eb12c99047cf93654c8ef /src/devices/video
parent9b5e0386fe4636aea360159e6371f0b3edd05376 (diff)
another fix for Visual Studio 2019 (nw)
Diffstat (limited to 'src/devices/video')
-rw-r--r--src/devices/video/crt9028.cpp4
-rw-r--r--src/devices/video/crt9028.h4
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,