(MESS) fixed compile error on unofficial tools

This commit is contained in:
Robbbert 2014-01-20 10:32:58 +00:00
parent 298ba96c5a
commit a8f50d7c66
2 changed files with 7 additions and 7 deletions

View File

@ -118,15 +118,15 @@ i8271_device::i8271_device(const machine_config &mconfig, const char *tag, devic
m_HeadSettlingTime(0),
m_IndexCountBeforeHeadUnload(0),
m_HeadLoadTime(0),
m_ID_C(0),
m_ID_H(0),
//m_ID_C(0),
//m_ID_H(0),
m_ID_R(0),
m_ID_N(0),
m_data_id(0),
m_ExecutionPhaseTransferCount(0),
m_ExecutionPhaseCount(0),
m_Counter(0),
m_data_direction(0)
m_Counter(0)
//m_data_direction(0)
{
for (int i = 0; i < 8; i++ )
{

View File

@ -98,8 +98,8 @@ private:
unsigned long m_HeadLoadTime;
/* id on disc to find */
int m_ID_C;
int m_ID_H;
//int m_ID_C;
//int m_ID_H;
int m_ID_R;
int m_ID_N;
@ -114,7 +114,7 @@ private:
int m_Counter;
/* ==0, to cpu, !=0 =from cpu */
int m_data_direction;
//int m_data_direction;
emu_timer *m_data_timer;
emu_timer *m_command_complete_timer;