fixed clang compiler warnings (nw)

This commit is contained in:
Oliver Stöneberg 2013-08-02 04:33:24 +00:00
parent 4feb0774b1
commit 29216ef980
3 changed files with 4 additions and 4 deletions

View File

@ -510,7 +510,7 @@ seibu_adpcm_device::seibu_adpcm_device(const machine_config &mconfig, const char
m_end(0),
m_nibble(0),
m_playing(0),
m_allocated(0),
//m_allocated(0),
m_base(NULL)
{
}

View File

@ -129,7 +129,7 @@ protected:
UINT32 m_end;
UINT8 m_nibble;
UINT8 m_playing;
UINT8 m_allocated;
//UINT8 m_allocated;
UINT8 *m_base;
};

View File

@ -997,7 +997,7 @@ void pgm_arm_type1_state::command_handler_puzzli2(int pc)
{
m_valueresponse = 0x00166178; // right for puzzli2 , wrong for puzzli2s, probably calculated from the writes then?
}
else if ( (m_value0==0x0004) ) // 2 player demo
else if ( m_value0==0x0004 ) // 2 player demo
{
m_valueresponse = 0x00166e72;
}
@ -1013,7 +1013,7 @@ void pgm_arm_type1_state::command_handler_puzzli2(int pc)
{
m_valueresponse = 0x18cf4a;
}
else if ( (m_value0==0x0004) ) // 2 player demo
else if ( m_value0==0x0004 ) // 2 player demo
{
m_valueresponse = 0x0018dc44;
}