Skip to content

Commit 421c088

Browse files
Joerg Amannfreezy
authored andcommitted
fix scaling issue with LRM scenes
1 parent ed1d459 commit 421c088

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

LibDmd/Converter/Colorize/Animation.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ private byte[][] RenderLCM(byte[][] vpmFrame)
186186
}
187187
if (SwitchMode == SwitchMode.MaskedReplace)
188188
{
189-
if (vpmFrame[0].Length != LCMBufferPlanes[0].Length * 4)
189+
if (LCMBufferPlanes[0].Length == vpmFrame[0].Length * 4)
190190
{
191191
if (ScalerMode == ScalerMode.Doubler)
192192
{

0 commit comments

Comments
 (0)