summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2014-01-07 03:25:30 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2014-01-07 03:25:30 +0000
commit4e57365beffd5b476a1518373c7286374028e27f (patch)
treee2883dd1b4b9570a075f3e4e109baf9d6896d58b /src
parent1fc2584c80e4d90df164d5294ca28ced9c27c733 (diff)
Fix GCC 4.8+ / Clang compiles (nw)
Diffstat (limited to 'src')
-rw-r--r--src/mess/machine/atarifdc.c2
-rw-r--r--src/mess/machine/atarifdc.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mess/machine/atarifdc.c b/src/mess/machine/atarifdc.c
index 0cb1d8a12d2..8ca7a64b4dc 100644
--- a/src/mess/machine/atarifdc.c
+++ b/src/mess/machine/atarifdc.c
@@ -766,7 +766,7 @@ atari_fdc_device::atari_fdc_device(const machine_config &mconfig, const char *ta
m_serout_count(0),
m_serout_offs(0),
m_serout_chksum(0),
- m_serout_delay(0),
+// m_serout_delay(0),
m_serin_count(0),
m_serin_offs(0),
m_serin_chksum(0),
diff --git a/src/mess/machine/atarifdc.h b/src/mess/machine/atarifdc.h
index f2ce2d569f0..334c4bd8dbc 100644
--- a/src/mess/machine/atarifdc.h
+++ b/src/mess/machine/atarifdc.h
@@ -49,7 +49,7 @@ private:
int m_serout_offs;
UINT8 m_serout_buff[512];
UINT8 m_serout_chksum;
- int m_serout_delay;
+// int m_serout_delay;
int m_serin_count;
int m_serin_offs;