Skip to content

Commit

Permalink
Ignore Multi UOP->MUL flags unused by CUO
Browse files Browse the repository at this point in the history
  • Loading branch information
jabinb committed Feb 22, 2023
1 parent 34b3f6e commit a186d37
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/diff-tool/src/MulToUop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -482,7 +482,8 @@ public void FromUOP(Stream inputUop, Stream outputMul, Stream outputIdx, FileTyp
multiWriter.Write(flags switch
{
256 => 0x0000000100000001,
257 => 0x0000000100000000,
257 => 0, // Ignored by CUO, should be 0x0000000100000000
1 => 0,
_ or 0 => 1
});
}
Expand Down

0 comments on commit a186d37

Please sign in to comment.