From 4ed21c1ccb42e377ec5a20cf66638b4f207515be Mon Sep 17 00:00:00 2001 From: sr55 Date: Fri, 6 Jul 2012 20:05:42 +0000 Subject: [PATCH] WinGui: Fix for Chapter markers starting at the wrong point. git-svn-id: svn://svn.handbrake.fr/HandBrake/trunk@4811 b64f7644-9d1e-0410-96f1-a4d463321fa5 --- .../Utilities/QueryGeneratorUtility.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs index 7678beeb0..fd8e15152 100644 --- a/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs +++ b/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs @@ -914,7 +914,7 @@ namespace HandBrake.ApplicationServices.Utilities private static bool ChapterCsvSave(IEnumerable chapters, string filePathName) { string csv = string.Empty; - int counter = 0; + int counter = 1; foreach (ChapterMarker name in chapters) { -- 2.40.0