diff options
author | 2015-08-30 14:44:07 +0200 | |
---|---|---|
committer | 2015-08-30 14:44:07 +0200 | |
commit | 1a197f1856f6de0738caf64bc4b688e935d55e66 (patch) | |
tree | 4d02008cbbd8560c5c65491ff37000ff6645e585 | |
parent | ab8f969618f372f22caa8aab3b2fa4637962235e (diff) |
fixed logging (nw)
-rw-r--r-- | src/mess/drivers/dvk_kcgd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mess/drivers/dvk_kcgd.c b/src/mess/drivers/dvk_kcgd.c index 13d03f972b3..e063c12d2e7 100644 --- a/src/mess/drivers/dvk_kcgd.c +++ b/src/mess/drivers/dvk_kcgd.c @@ -310,9 +310,9 @@ TIMER_DEVICE_CALLBACK_MEMBER(kcgd_state::scanline_callback) offset = BIT(m_video.status, KCGD_STATUS_PAGE) ? (KCGD_PAGE_1 >> 1) : (KCGD_PAGE_0 >> 1); -// DBG_LOG(2,"scanline_cb", ("frame %d y %.3d page %d offset %04X *offset %04X\n", -// m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE), -// y, offset + y, m_videoram[offset + y])); + DBG_LOG(2,"scanline_cb", ("frame %" I64FMT "d y %.3d page %d offset %04X *offset %04X\n", + m_screen->frame_number(), BIT(m_video.status, KCGD_STATUS_PAGE), + y, offset + y, m_videoram[offset + y])); draw_scanline(&m_tmpbmp.pix16(y), m_videoram[offset + (KCGD_DISP_VERT-1) - y]); } |