mirror of
https://github.com/holub/mame
synced 2025-10-05 08:41:31 +03:00
fixed clang compiler warnings (nw)
This commit is contained in:
parent
4feb0774b1
commit
29216ef980
@ -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)
|
||||
{
|
||||
}
|
||||
|
@ -129,7 +129,7 @@ protected:
|
||||
UINT32 m_end;
|
||||
UINT8 m_nibble;
|
||||
UINT8 m_playing;
|
||||
UINT8 m_allocated;
|
||||
//UINT8 m_allocated;
|
||||
UINT8 *m_base;
|
||||
};
|
||||
|
||||
|
@ -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;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user