From 0ee114dc23bef512b919d34379865b7f18fe2b38 Mon Sep 17 00:00:00 2001 From: Paul Dino Jones Date: Sat, 4 Apr 2026 10:02:16 -0400 Subject: [PATCH] Add config entry for Moza R3 --- src/monocoque/helper/confighelper.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/monocoque/helper/confighelper.c b/src/monocoque/helper/confighelper.c index b9bea5a..e99655b 100644 --- a/src/monocoque/helper/confighelper.c +++ b/src/monocoque/helper/confighelper.c @@ -113,6 +113,11 @@ int strtodevsubsubtype(const char* device_subsubtype, DeviceSettings* ds) ds->dev_subsubtype = SIMDEVSUBTYPE_MOZAR5; devfound = true; } + if (strcicmp(device_subsubtype, "MozaR3") == 0) + { + ds->dev_subsubtype = SIMDEVSUBTYPE_MOZAR5; + devfound = true; + } if (strcicmp(device_subsubtype, "CSLELITEV3PEDALS") == 0) { ds->dev_subsubtype = SIMDEVSUBTYPE_CSLELITEV3PEDALS;