fixed compile (nw)

This commit is contained in:
Miodrag Milanovic 2015-08-30 14:41:11 +02:00
parent 35ab28d865
commit ab8f969618
2 changed files with 4 additions and 4 deletions

View File

@ -66,7 +66,7 @@ protected:
virtual UINT32 disasm_max_opcode_bytes() const { return 6; }
virtual offs_t disasm_disassemble(char *buffer, offs_t pc, const UINT8 *oprom, const UINT8 *opram, UINT32 options);
private:
protected:
address_space_config m_program_config;
UINT16 c_initial_mode;

View File

@ -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 %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]);
}