Fixed issue related to commit 960f300d4e

This commit is contained in:
Nikolaj Olsson 2016-06-07 06:30:12 +02:00
parent 53bd6b07d1
commit d1409ede4a

View File

@ -194,7 +194,7 @@ namespace Nikse.SubtitleEdit.Core.SubtitleFormats
{ {
int frames16 = int.Parse(parts[0]); int frames16 = int.Parse(parts[0]);
int frames = int.Parse(parts[1]); 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)));
} }
private Encoding GetEncodingFromLanguage(byte language) private Encoding GetEncodingFromLanguage(byte language)