summaryrefslogtreecommitdiffstats
path: root/win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs
diff options
context:
space:
mode:
authorsr55 <[email protected]>2012-07-06 20:05:42 +0000
committersr55 <[email protected]>2012-07-06 20:05:42 +0000
commit4ed21c1ccb42e377ec5a20cf66638b4f207515be (patch)
treeb29f65a203407ed9beec256ac228d5e7ca9a7867 /win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs
parent60a18b887f11a06574c0cfb3143812ab4d5993bb (diff)
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
Diffstat (limited to 'win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs')
-rw-r--r--win/CS/HandBrake.ApplicationServices/Utilities/QueryGeneratorUtility.cs2
1 files changed, 1 insertions, 1 deletions
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<ChapterMarker> chapters, string filePathName)
{
string csv = string.Empty;
- int counter = 0;
+ int counter = 1;
foreach (ChapterMarker name in chapters)
{