diff options
author | 2024-12-03 21:44:04 +0100 | |
---|---|---|
committer | 2024-12-03 21:44:04 +0100 | |
commit | c13ed02291783bc370de4f56a42e73fbf55a9899 (patch) | |
tree | d15082bb4cf622c2f9980c0ed0d80dac53558dba /src/devices/video/ef9340_1.cpp | |
parent | 969ee8bc749c9d6749ddddc87f1c0efd2b1a5cfa (diff) |
i8244: fix collision detection edge case [hap, bataais]
Diffstat (limited to 'src/devices/video/ef9340_1.cpp')
-rw-r--r-- | src/devices/video/ef9340_1.cpp | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/src/devices/video/ef9340_1.cpp b/src/devices/video/ef9340_1.cpp index c218645208c..7b5dbcb5d8d 100644 --- a/src/devices/video/ef9340_1.cpp +++ b/src/devices/video/ef9340_1.cpp @@ -35,16 +35,15 @@ TODO: DEFINE_DEVICE_TYPE(EF9340_1, ef9340_1_device, "ef9340_1", "Thomson EF9340+EF9341") -ef9340_1_device::ef9340_1_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) - : device_t(mconfig, EF9340_1, tag, owner, clock) - , device_video_interface(mconfig, *this) - , m_charset(*this, "ef9340_1") - , m_write_exram(*this) - , m_read_exram(*this, 0xff) -{ - m_offset_x = 0; - m_offset_y = 0; -} +ef9340_1_device::ef9340_1_device(const machine_config &mconfig, const char *tag, device_t *owner, u32 clock) : + device_t(mconfig, EF9340_1, tag, owner, clock), + device_video_interface(mconfig, *this), + m_charset(*this, "ef9340_1"), + m_offset_x(0), + m_offset_y(0), + m_write_exram(*this), + m_read_exram(*this, 0xff) +{ } ROM_START( ef9340_1 ) |