Add SkipperMatch tests, fix broken Skipper stuff

This commit is contained in:
Matt Nadareski
2020-12-18 17:07:58 -08:00
parent f7a19c53bf
commit dc6bcc1b17
6 changed files with 400 additions and 33 deletions

View File

@@ -178,13 +178,10 @@ namespace SabreTools.Skippers
case HeaderSkipOperation.Byteswap:
if (pos % 2 == 1)
{
buffer[pos - 1] = b;
}
if (pos % 2 == 0)
{
else
buffer[pos + 1] = b;
}
break;
case HeaderSkipOperation.Wordswap: