We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1c70965 commit 56ea440Copy full SHA for 56ea440
1 file changed
pelcod_decoder.js
@@ -1077,6 +1077,7 @@ decode_vcl(new_byte) {
1077
else if (byte2 == 0x4C && has_byte3) msg_string += '[Left ' + byte3 + ']';
1078
else if (byte2 == 0x52 && has_byte3) msg_string += '[Right ' + byte3 + ']';
1079
else if (byte2 == 0x55 && has_byte3) msg_string += '[Right ' + byte3 + ']';
1080
+ else if (byte2 == 0x50 && has_byte3) msg_string += '[Start Recording Pattern ' + byte3 + ']';
1081
else if (byte2 == 0x5E && has_byte3) msg_string += '[Start Tour/Pattern ' + byte3 + ']';
1082
else {
1083
// invalid command (byte2 not in our list)
0 commit comments