Don't double-load subtitles from movies
this duplicated all subtitles on every load... ???
- fixes bc16a2cdaa
This commit is contained in:
parent
6ffe5a0d5d
commit
7bb7cdeaee
|
@ -223,19 +223,6 @@ namespace BizHawk.Client.Common
|
|||
|
||||
Subtitles.Sort();
|
||||
});
|
||||
|
||||
bl.GetLump(BinaryStateLump.Subtitles, abort: false, tr =>
|
||||
{
|
||||
while (tr.ReadLine() is string line)
|
||||
{
|
||||
if (!string.IsNullOrWhiteSpace(line))
|
||||
{
|
||||
Subtitles.AddFromString(line);
|
||||
}
|
||||
}
|
||||
|
||||
Subtitles.Sort();
|
||||
});
|
||||
}
|
||||
|
||||
private void LoadFramecount(ZipStateLoader bl)
|
||||
|
|
Loading…
Reference in New Issue