From 8a9009fc0ee01e9e493f6a54d9df4cddc47e9f7b Mon Sep 17 00:00:00 2001 From: Jordan Wages Date: Wed, 12 Sep 2018 22:35:36 -0500 Subject: [PATCH] Comments Adding comments --- butterflow-ui/ButterflowWrapper.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/butterflow-ui/ButterflowWrapper.cs b/butterflow-ui/ButterflowWrapper.cs index 9ed8fbf..f30ff73 100644 --- a/butterflow-ui/ButterflowWrapper.cs +++ b/butterflow-ui/ButterflowWrapper.cs @@ -237,6 +237,7 @@ namespace butterflow_ui OnParsedConsoleOutputRecieved(ButterflowOutputType.Progress, progress, consoleOutput); } + // An alternate test for progression on a rendering video regex = new Regex(REGEX_PROGRESS_ALT); foreach (Match match in regex.Matches(consoleOutput)) { @@ -248,6 +249,7 @@ namespace butterflow_ui OnParsedConsoleOutputRecieved(ButterflowOutputType.Progress, progress, consoleOutput); } + // Test for device declaration regex = new Regex(REGEX_DEVICE); foreach (Match match in regex.Matches(consoleOutput)) {