diff options
| author | 2014-10-28 09:46:52 +0100 | |
|---|---|---|
| committer | 2014-10-28 09:46:52 +0100 | |
| commit | e27079c36ef7e4d8d32b6ea88fa7cf4f5ab37091 (patch) | |
| tree | 9ac595e0ca38284ea865b8b4ca5c7e458eaf9f23 | |
| parent | 7c97788e2fea21f336cdaeb5bf1ab4ae83951a1a (diff) | |
fixed usage of uninitialized member in grip_device (nw)
happened with prof80
| -rw-r--r-- | src/emu/bus/ecbbus/grip.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/emu/bus/ecbbus/grip.c b/src/emu/bus/ecbbus/grip.c index 397c985aa1e..744ac847b96 100644 --- a/src/emu/bus/ecbbus/grip.c +++ b/src/emu/bus/ecbbus/grip.c @@ -681,6 +681,7 @@ void grip_device::device_reset() { m_base = m_j7->read(); m_page = 0; + m_lps = 0; } |
