mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 04:33:04 +01:00
Fixed issue related to commit 960f300d4e
This commit is contained in:
parent
53bd6b07d1
commit
d1409ede4a
@ -194,7 +194,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)));
|
||||
}
|
||||
|
||||
private Encoding GetEncodingFromLanguage(byte language)
|
||||
|
Loading…
Reference in New Issue
Block a user