From f425e26f172fb6699fdee76fa86a9eaabfb9b069 Mon Sep 17 00:00:00 2001 From: John Andrews Date: Tue, 28 Jan 2025 08:15:39 +1300 Subject: [PATCH] FF-2018 - fixed logging --- VideoNodes/LogicalNodes/VideoBitCheck.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VideoNodes/LogicalNodes/VideoBitCheck.cs b/VideoNodes/LogicalNodes/VideoBitCheck.cs index 9791856e..0b456cac 100644 --- a/VideoNodes/LogicalNodes/VideoBitCheck.cs +++ b/VideoNodes/LogicalNodes/VideoBitCheck.cs @@ -61,7 +61,7 @@ public class VideoBitCheck : VideoNode args.Logger?.ILog("Video is 12 bit"); return 3; } - args.Logger?.ILog("Video Bits unknonw"); + args.Logger?.ILog("Video Bits unknown"); return 4; } }