diff options
author | 2013-03-09 09:38:18 +0000 | |
---|---|---|
committer | 2013-03-09 09:38:18 +0000 | |
commit | 4ed6e530886ad54bf3e2746769bb90a4e3e7a617 (patch) | |
tree | a584316d074022daeb65f810d032e7a032f1ee33 /src/emu/machine/at45dbxx.h | |
parent | 4a1f2f773501f5699e9615f24ecc938cc5278958 (diff) |
fixed uninitialized and disabled unused member in src/mess/machine/at45dbxx.c (nw)
Diffstat (limited to 'src/emu/machine/at45dbxx.h')
-rw-r--r-- | src/emu/machine/at45dbxx.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/machine/at45dbxx.h b/src/emu/machine/at45dbxx.h index 1cc85cccadd..76c8843acb4 100644 --- a/src/emu/machine/at45dbxx.h +++ b/src/emu/machine/at45dbxx.h @@ -73,7 +73,7 @@ protected: UINT8 m_mode; UINT8 m_status; UINT8 * m_buffer1; - UINT8 * m_buffer2; + //UINT8 * m_buffer2; UINT8 m_si_byte; UINT8 m_si_bits; UINT8 m_so_byte; |