From f24e97c6c17aa8df00b151fe779d8927f886e207 Mon Sep 17 00:00:00 2001 From: Aleksandr Kovalyov Date: Thu, 18 Mar 2021 14:35:23 +0100 Subject: [PATCH] added compatibility with newer versions of nvidia's frameview program --- .../DataProcessing/FrameVew/FrameViewDataProcessing.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TXT_FrameTimeHandler/DataProcessing/FrameVew/FrameViewDataProcessing.cs b/TXT_FrameTimeHandler/DataProcessing/FrameVew/FrameViewDataProcessing.cs index 3cda0ad..4130ce0 100644 --- a/TXT_FrameTimeHandler/DataProcessing/FrameVew/FrameViewDataProcessing.cs +++ b/TXT_FrameTimeHandler/DataProcessing/FrameVew/FrameViewDataProcessing.cs @@ -28,7 +28,7 @@ public static Maybe ProcessFrameViewFile(string path) sr.ReadLine() // maybe null reference exception .Split(',') .ToList() - .FindIndex(column => column == "MsBetweenDisplayChangeActual"); + .FindIndex(column => column == "MsBetweenDisplayChangeActual" || column == "MsBetweenDisplayChange"); var line = "";