Add some comments regarding aliases
This commit is contained in:
parent
81f8e2bff2
commit
16bfe8fa98
1 changed files with 2 additions and 2 deletions
|
|
@ -206,13 +206,13 @@ bool sfz::Region::parseOpcode(const Opcode& rawOpcode)
|
|||
if (auto value = readOpcode(opcode.value, Default::midi7Range))
|
||||
ccConditions[opcode.parameters.back()].setEnd(normalizeCC(*value));
|
||||
break;
|
||||
case hash("lohdcc&"):
|
||||
case hash("lohdcc&"): // also lorealcc&
|
||||
if (opcode.parameters.back() >= config::numCCs)
|
||||
return false;
|
||||
if (auto value = readOpcode(opcode.value, Default::normalizedRange))
|
||||
ccConditions[opcode.parameters.back()].setStart(*value);
|
||||
break;
|
||||
case hash("hihdcc&"):
|
||||
case hash("hihdcc&"): // also hirealcc&
|
||||
if (opcode.parameters.back() >= config::numCCs)
|
||||
return false;
|
||||
if (auto value = readOpcode(opcode.value, Default::normalizedRange))
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue