diff options
author | 2015-02-25 08:09:13 +0100 | |
---|---|---|
committer | 2015-02-25 08:09:13 +0100 | |
commit | 6ae44e46f91aa2bd74d9895e6bfd345baebd3d22 (patch) | |
tree | 70be3ad6f499bb138c0335e8d2d16790f6f971b3 /src/emu/video | |
parent | 33c8d18d612786130c2baafd644604137f6f4ef8 (diff) |
Cleanups and version bumpmame0159
Diffstat (limited to 'src/emu/video')
-rw-r--r-- | src/emu/video/scn2674.c | 20 | ||||
-rw-r--r-- | src/emu/video/scn2674.h | 4 |
2 files changed, 12 insertions, 12 deletions
diff --git a/src/emu/video/scn2674.c b/src/emu/video/scn2674.c index b581465eda7..025dd231f2c 100644 --- a/src/emu/video/scn2674.c +++ b/src/emu/video/scn2674.c @@ -699,16 +699,16 @@ void scn2674_device::device_timer(emu_timer &timer, device_timer_id id, int para if (!m_display_cb.isnull()) m_display_cb(m_bitmap, - i * m_hpixels_per_column, - m_linecounter, - tilerow, - space().read_byte(address), - address, - (charrow >= m_IR6_cursor_first_scanline) && m_cursor_on, - dw != 0, - m_gfx_enabled != 0, - charrow == m_IR7_cursor_underline_position, - m_IR7_cursor_blink && (m_screen->frame_number() & (m_IR7_cursor_rate_divisor ? 0x40 : 0x20))); + i * m_hpixels_per_column, + m_linecounter, + tilerow, + space().read_byte(address), + address, + (charrow >= m_IR6_cursor_first_scanline) && m_cursor_on, + dw != 0, + m_gfx_enabled != 0, + charrow == m_IR7_cursor_underline_position, + m_IR7_cursor_blink && (m_screen->frame_number() & (m_IR7_cursor_rate_divisor ? 0x40 : 0x20))); address = (address + 1) & 0xffff; if(address > ((m_IR9_display_buffer_last_address << 10) | 0x3ff)) diff --git a/src/emu/video/scn2674.h b/src/emu/video/scn2674.h index 52ec99c3af4..02efaf80fe1 100644 --- a/src/emu/video/scn2674.h +++ b/src/emu/video/scn2674.h @@ -19,8 +19,8 @@ #define SCN2674_DRAW_CHARACTER_MEMBER(_name) void _name(bitmap_rgb32 &bitmap, int x, int y, UINT8 linecount, UINT8 charcode, UINT16 address, UINT8 cursor, UINT8 dw, UINT8 lg, UINT8 ul, UINT8 blink) class scn2674_device : public device_t, - public device_video_interface, - public device_memory_interface + public device_video_interface, + public device_memory_interface { public: scn2674_device(const machine_config &mconfig, const char *tag, device_t *owner, UINT32 clock); |