summaryrefslogtreecommitdiffstatshomepage
path: root/src/mess/machine/gamecom.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mess/machine/gamecom.c')
-rw-r--r--src/mess/machine/gamecom.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mess/machine/gamecom.c b/src/mess/machine/gamecom.c
index 0ca4496d6dc..2395f30d318 100644
--- a/src/mess/machine/gamecom.c
+++ b/src/mess/machine/gamecom.c
@@ -500,7 +500,7 @@ WRITE8_MEMBER( gamecom_state::gamecom_handle_dma )
UINT16 dest_addr = m_dma.dest_current & m_dma.dest_mask;
UINT8 dest_adj = (3 - (m_dma.dest_x_current & 3)) << 1;
UINT8 src_adj = (3 - (m_dma.source_x_current & 3)) << 1;
-
+
/* handle DMA for 1 pixel */
// Get new pixel
UINT8 source_pixel = (m_dma.source_bank[src_addr] >> src_adj) & 3;