From 960f300d4eaf56e339da16583b65b05b21e4719f Mon Sep 17 00:00:00 2001 From: Ivandro Ismael Date: Sun, 5 Jun 2016 15:16:39 +0000 Subject: [PATCH] [Footage] - Fix bug when parsing time-code. --- libse/SubtitleFormats/Footage.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libse/SubtitleFormats/Footage.cs b/libse/SubtitleFormats/Footage.cs index a10efe12f..6cd866fa5 100644 --- a/libse/SubtitleFormats/Footage.cs +++ b/libse/SubtitleFormats/Footage.cs @@ -162,7 +162,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats { int frames16 = int.Parse(parts[0]); int frames = int.Parse(parts[1]); - return new TimeCode(0, 0, 0, FramesToMilliseconds(16 * frames16 + frames)); + return new TimeCode(FramesToMilliseconds(16 * frames16 + (frames * 16.0 / 24.0))); } }