Please look at your [mugen]\data\mugen.cfg and find out which system.def your MUGEN is using first......
In your MUGEN system.def that you have found in your [mugen]\data\mugen.cfg, find these lines:
;-------------------------------------------------------------------
;Title screen definition
[Title Info]
fadein.time = 10
fadeout.time = 10
menu.pos = 640,380
menu.item.font = 4,0,0
menu.item.active.font = 4,5,0, 224,240,240
menu.item.spacing = 0, 54
; Names for each of the items in the menu. Names must be in quotes.
; Use "" to disable an item. If all are disabled, goes straight to demo mode; (hold Esc to quit demos).
menu.itemname.arcade = "ARCADE"
menu.itemname.versus = "VS MODE"
menu.itemname.teamarcade = "TEAM ARCADE"
menu.itemname.teamversus = "TEAM VS"
menu.itemname.teamcoop = "TEAM CO-OP"
menu.itemname.survival = "SURVIVAL"
menu.itemname.survivalcoop = "SURVIVAL CO-OP"
menu.itemname.training = "TRAINING"
menu.itemname.watch = "WATCH"
menu.itemname.options = "OPTIONS"
menu.itemname.exit = "EXIT"
Pay attention to this line:
; Use "" to disable an item. If all are disabled, goes straight to demo modeSo if you want to disable ARCADE and VS MODE, then you can simply do this:
- change:
menu.itemname.arcade = "ARCADE"
menu.itemname.versus = "VS MODE"
to
menu.itemname.arcade = ""
menu.itemname.versus = ""
That is it!