From 5917831992f9b0de6a15e54f9d07c75370b608f0 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Mon, 4 Nov 2024 04:12:05 -0500 Subject: [PATCH] OPLL: fix 13xx typo --- src/engine/sysDef.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/engine/sysDef.cpp b/src/engine/sysDef.cpp index 55bccd900..7fdeb4f3f 100644 --- a/src/engine/sysDef.cpp +++ b/src/engine/sysDef.cpp @@ -556,7 +556,7 @@ void DivEngine::registerSystems() { {0x10, {DIV_CMD_WAVE, _("10xx: Set patch (0 to F)")}}, {0x11, {DIV_CMD_FM_FB, _("11xx: Set feedback (0 to 7)")}}, {0x12, {DIV_CMD_FM_TL, _("12xx: Set level of operator 1 (0 highest, 3F lowest)"), constVal<0>, effectVal}}, - {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, 3F lowest)"), constVal<1>, effectVal}}, + {0x13, {DIV_CMD_FM_TL, _("13xx: Set level of operator 2 (0 highest, F lowest)"), constVal<1>, effectVal}}, {0x16, {DIV_CMD_FM_MULT, _("16xy: Set operator multiplier (x: operator from 1 to 2; y: multiplier)"), effectOpValNoZero<2>, effectValAnd<15>}}, {0x19, {DIV_CMD_FM_AR, _("19xx: Set attack of all operators (0 to F)"), constVal<-1>, effectValAnd<15>}}, {0x1a, {DIV_CMD_FM_AR, _("1Axx: Set attack of operator 1 (0 to F)"), constVal<0>, effectValAnd<15>}},