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;