im still trying to compile mame in so in the dipswitch i can select Console and Arcade Mode...so far i'v found this...
in src/drivers/neogeo.c
uncomment lines 836-838 and 908-910 (remove the //)
// PORT_DIPNAME( 0x04, 0x04,"Machine Mode" )
// PORT_DIPSETTING( 0x00,"Home" )
// PORT_DIPSETTING( 0x04,"Arcade" )
in src/machine/neogeo.c change lines 42-44
from
#ifndef CONSOLE
res |= 0x8000;
#endif
to
if(src & 0x04)
res |= 0x8000;
thats what i'v found and tried but so far still no luck..
anyone done this before and had it work?? i'v tried sooooooo many times now..anyone able to help??
if so that would be great, maybe something is off up there...i know the line #'s have changed in the newest release, im using .71, maybe i need to use an older version?
anyway im blabbering any help would be great.
Thanks,
-Syxx