1
0
mirror of https://github.com/DCC-EX/CommandStation-EX.git synced 2025-01-11 13:21:01 +01:00

Correct throw/close re haba

This commit is contained in:
Asbelos 2021-08-08 18:48:51 +01:00
parent 270b9df523
commit 67be436898

View File

@ -357,11 +357,11 @@ void RMFT2::loop2() {
switch ((OPCODE)opcode) {
case OPCODE_THROW:
Turnout::activate(operand, true);
Turnout::activate(operand, false);
break;
case OPCODE_CLOSE:
Turnout::activate(operand, false);
Turnout::activate(operand, true);
break;
case OPCODE_REV: