hide P3 and P4 light gun crosshairs for arcade games

This commit is contained in:
Flyinghead 2024-03-06 16:42:43 +01:00
parent 391da7023f
commit 43bb7c83f7
1 changed files with 6 additions and 0 deletions

View File

@ -394,6 +394,12 @@ void mcfg_CreateDevices()
die("Unknown system");
break;
}
if (settings.platform.isArcade() && !settings.input.fourPlayerGames)
{
// No known 4-player lightgun/touchscreen game so far
config::CrosshairColor[2].override(0);
config::CrosshairColor[3].override(0);
}
vmuDigest();
}