Skip to content

Commit

Permalink
fix scaling issue with LRM scenes
Browse files Browse the repository at this point in the history
  • Loading branch information
Joerg Amann authored and freezy committed Mar 2, 2022
1 parent ed1d459 commit 421c088
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion LibDmd/Converter/Colorize/Animation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ private byte[][] RenderLCM(byte[][] vpmFrame)
}
if (SwitchMode == SwitchMode.MaskedReplace)
{
if (vpmFrame[0].Length != LCMBufferPlanes[0].Length * 4)
if (LCMBufferPlanes[0].Length == vpmFrame[0].Length * 4)
{
if (ScalerMode == ScalerMode.Doubler)
{
Expand Down

0 comments on commit 421c088

Please sign in to comment.