diff options
author | 2013-05-12 00:12:47 +0000 | |
---|---|---|
committer | 2013-05-12 00:12:47 +0000 | |
commit | 3b7335ea02104432245e09c524439cb8cae1b0a0 (patch) | |
tree | b5c4b4b8fbacb66f7df6ee613debc0f9b3c0bc46 /src/emu/machine/ds2401.h | |
parent | 5807dc2c5a4916a19c11b26ff220ac4089a2c75e (diff) |
fixed variable and parameter conflict (nw)
Diffstat (limited to 'src/emu/machine/ds2401.h')
-rw-r--r-- | src/emu/machine/ds2401.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/emu/machine/ds2401.h b/src/emu/machine/ds2401.h index c2d74629c92..c44a1500ca4 100644 --- a/src/emu/machine/ds2401.h +++ b/src/emu/machine/ds2401.h @@ -51,11 +51,11 @@ protected: virtual void device_timer(emu_timer &timer, device_timer_id id, int param, void *ptr); // internal state - int state, bit, shift; - UINT8 byte; - bool rx, tx; - UINT8 data[SIZE_DATA]; - emu_timer *timer_main, *timer_reset; + int m_state, m_bit, m_shift; + UINT8 m_byte; + bool m_rx, m_tx; + UINT8 m_data[SIZE_DATA]; + emu_timer *m_timer_main, *m_timer_reset; attotime t_samp, t_rdv, t_rstl, t_pdh, t_pdl; private: |