Previous 199869 Revisions Next

r20901 Sunday 10th February, 2013 at 16:45:24 UTC by Wilbert Pol
(MESS) vii.c: Fixed batmantv regression (nw)
[src/mess/drivers]vii.c

trunk/src/mess/drivers/vii.c
r20900r20901
10091009   m_controller_input[6] = 0xff;
10101010   m_controller_input[7] = 0;
10111011
1012   UINT8 *rom = m_region_cart->base();
1013   if (rom)
1014   { // to prevent batman crash
1012   if ( m_region_cart )
1013   {
1014      UINT8 *rom = m_region_cart->base();
10151015      memcpy(m_p_cart, rom + 0x4000*2, (0x400000 - 0x4000) * 2);
10161016   }
10171017

Previous 199869 Revisions Next


© 1997-2024 The MAME Team