diff options
Diffstat (limited to 'src/devices/video')
| -rw-r--r-- | src/devices/video/hd44780.cpp | 2 | ||||
| -rw-r--r-- | src/devices/video/snes_ppu.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/devices/video/hd44780.cpp b/src/devices/video/hd44780.cpp index a8ba3a77cc5..ea6a63ca415 100644 --- a/src/devices/video/hd44780.cpp +++ b/src/devices/video/hd44780.cpp @@ -90,7 +90,7 @@ void hd44780_device::device_start() m_cgrom.set_target(memregion("cgrom")->base(), 0x1000); m_pixel_update_cb.bind_relative_to(*owner()); - + m_busy_timer = timer_alloc(TIMER_BUSY); m_blink_timer = timer_alloc(TIMER_BLINKING); m_blink_timer->adjust(attotime::from_msec(409), 0, attotime::from_msec(409)); diff --git a/src/devices/video/snes_ppu.cpp b/src/devices/video/snes_ppu.cpp index d396d86d6c5..fa7c85e3f7c 100644 --- a/src/devices/video/snes_ppu.cpp +++ b/src/devices/video/snes_ppu.cpp @@ -371,7 +371,7 @@ void snes_ppu_device::device_reset() m_beam.latch_vert = 0; m_beam.latch_horz = 0; m_beam.current_vert = 0; - + /* Set STAT78 to NTSC or PAL */ m_stat78 = (ATTOSECONDS_TO_HZ(m_screen->frame_period().attoseconds()) >= 59.0) ? SNES_NTSC : SNES_PAL; m_beam.last_visible_line = m_stat78 & SNES_PAL ? 240 : 225; |
