Skip to content

Commit ba91154

Browse files
committed
Bug Fix
1 parent ab5b2ea commit ba91154

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

XRIT/Tools/ImageTools.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -341,8 +341,8 @@ public static void Apply2DLut(Func<byte, byte, int> lookup, ref Bitmap visible,
341341
}
342342

343343
if (visible.Height != infrared.Height || visible.Width != infrared.Width) {
344-
UIConsole.Warn ("The Infrared and Visible channels size doesn't match, the false color might look weird.\n" +
345-
$"Visible({visible.Width}, {visible.Height}) vs Infrared({infrared.Width, infrared.Height})");
344+
UIConsole.Warn ("The Infrared and Visible channels size doesn't match, the false might look weird.\n" +
345+
$"Visible({visible.Width}, {visible.Height}) vs Infrared({infrared.Width}, {infrared.Height})");
346346
}
347347

348348
var vdata = visible.LockBits(new Rectangle(0, 0, visible.Width, visible.Height), ImageLockMode.ReadWrite, visible.PixelFormat);

0 commit comments

Comments
 (0)