Fixed direction of SHIFT to match implementation

This commit is contained in:
wtup
2022-04-26 11:26:46 +02:00
committed by Andrew Johnson
parent e329fa3296
commit 9eb88f27d9

View File

@@ -114,9 +114,9 @@ which links will be processed by the seq record,
in combination with the C<SHFT> field:
if (SHFT >= 0)
SELN = SELN << -SHFT
else
SELN = SELN >> SHFT
else
SELN = SELN << -SHFT
I<(By default, the SHFT field is initialized to -1)>