> Anybody know if it is possible to add console mode selection to the
> Neogeo driver? I tried uncommenting the machine mode fake dipswitch
> in the source but it doesn't seem to do anything. I'd be really happy
> to be able to do this, as this would give me a way to finally play
> console mode Neogeo under Linux :)   
 
Replace:
 /* Console/arcade mode */
#ifndef CONSOLE
 res |= 0x8000;
#endif
 
With:
 /* Console/arcade mode */
 if( src & 0x4 )
  res |= 0x8000;
 
in src/machine/neogeo.c as well
Note that the newest games won't run in console mode unmodified.

--�
Paul Priest

Reply via email to