summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/machine/z80dma.c
diff options
context:
space:
mode:
author Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-16 09:22:13 +0000
committer Oliver Stöneberg <firewave@users.noreply.github.com>2013-02-16 09:22:13 +0000
commitb526cecada97cc36c6053f1808acbcc0c6083761 (patch)
treeb6a09f00f40c5cec2ad3b0a0f96dc6d4c810d886 /src/emu/machine/z80dma.c
parent709fcb99c1ac03ec7b5bd3a4f7281186b307773c (diff)
fixed unfixed uninitialized variables in src/emu/machine/z80dma.c (nw)
Diffstat (limited to 'src/emu/machine/z80dma.c')
-rw-r--r--src/emu/machine/z80dma.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/machine/z80dma.c b/src/emu/machine/z80dma.c
index 428c0544d1f..78acda43a89 100644
--- a/src/emu/machine/z80dma.c
+++ b/src/emu/machine/z80dma.c
@@ -229,6 +229,7 @@ void z80dma_device::device_reset()
m_dma_enabled = 0;
m_read_num_follow = m_read_cur_follow = 0;
m_reset_pointer = 0;
+ m_is_read = false;
// disable interrupts
WR3 &= ~0x20;