if src/drawgfx.c:
change
===============================================
static int crosshair_enable=1;
void drawgfx_toggle_crosshair(void)
{
crosshair_enable^=1;
}
void draw_crosshair(struct mame_bitmap *bitmap,int x,int y,const struct rectangle *clip)
{
unsigned short black,white;
int i;
if (!crosshair_enable)
===============================================
to
===============================================
/* static int crosshair_enable=1; */
void drawgfx_toggle_crosshair(void)
{
options.crosshairs^=1;
}
void draw_crosshair(struct mame_bitmap *bitmap,int x,int y,const struct rectangle *clip)
{
unsigned short black,white;
int i;
if (!options.crosshairs)
================================================
In /src/windows/config.c:
Add
{ "crosshairs", "ch", rc_bool, &options.crosshairs, "0", 0, 0, NULL, "draw crosshairs for lightgun games" },