Previous 199869 Revisions Next

r24644 Friday 2nd August, 2013 at 04:33:24 UTC by Oliver Stöneberg
fixed clang compiler warnings (nw)
[src/mame/audio]seibu.c seibu.h
[src/mame/machine]pgmprot_igs027a_type1.c

trunk/src/mame/audio/seibu.c
r24643r24644
510510      m_end(0),
511511      m_nibble(0),
512512      m_playing(0),
513      m_allocated(0),
513      //m_allocated(0),
514514      m_base(NULL)
515515{
516516}
trunk/src/mame/audio/seibu.h
r24643r24644
129129   UINT32 m_end;
130130   UINT8 m_nibble;
131131   UINT8 m_playing;
132   UINT8 m_allocated;
132   //UINT8 m_allocated;
133133   UINT8 *m_base;
134134};
135135
trunk/src/mame/machine/pgmprot_igs027a_type1.c
r24643r24644
997997            {
998998               m_valueresponse = 0x00166178; // right for puzzli2 , wrong for puzzli2s, probably calculated from the writes then?
999999            }
1000            else if ( (m_value0==0x0004) ) // 2 player demo
1000            else if ( m_value0==0x0004 ) // 2 player demo
10011001            {
10021002               m_valueresponse = 0x00166e72;
10031003            }
r24643r24644
10131013            {
10141014               m_valueresponse = 0x18cf4a;
10151015            }
1016            else if ( (m_value0==0x0004) ) // 2 player demo
1016            else if ( m_value0==0x0004 ) // 2 player demo
10171017            {
10181018               m_valueresponse = 0x0018dc44;
10191019            }

Previous 199869 Revisions Next


© 1997-2024 The MAME Team