From 43bb7c83f7155fcd4b52fc3706818208c2a83ffd Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Wed, 6 Mar 2024 16:42:43 +0100 Subject: [PATCH] hide P3 and P4 light gun crosshairs for arcade games --- core/hw/maple/maple_cfg.cpp | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/core/hw/maple/maple_cfg.cpp b/core/hw/maple/maple_cfg.cpp index 212b79dfd..5367aab5f 100644 --- a/core/hw/maple/maple_cfg.cpp +++ b/core/hw/maple/maple_cfg.cpp @@ -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(); }