diff options
Diffstat (limited to 'src/mame/machine/pcshare.cpp')
-rw-r--r-- | src/mame/machine/pcshare.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mame/machine/pcshare.cpp b/src/mame/machine/pcshare.cpp index c1fbf64b961..73e1a14cbbd 100644 --- a/src/mame/machine/pcshare.cpp +++ b/src/mame/machine/pcshare.cpp @@ -52,7 +52,7 @@ WRITE8_MEMBER(pcat_base_state::pc_dma_write_byte) READ8_MEMBER(pcat_base_state::dma_page_select_r) { - UINT8 data = m_at_pages[offset % 0x10]; + uint8_t data = m_at_pages[offset % 0x10]; switch(offset % 8) { |