mirror of
https://github.com/SubtitleEdit/subtitleedit.git
synced 2024-11-25 04:33:04 +01:00
Fixed typos in ebu stl bugfix...
git-svn-id: https://subtitleedit.googlecode.com/svn/trunk@321 99eadd0c-20b8-1223-b5c4-2a2b2df33de2
This commit is contained in:
parent
c4baaa211e
commit
911fbbc48c
@ -847,7 +847,7 @@ namespace Nikse.SubtitleEdit.Logic.SubtitleFormats
|
||||
for (int i = 0; i < 112; i++) // skip fist byte (seems to be always 0xd/32/space - thx Iban)
|
||||
{
|
||||
byte b = buffer[index + 16 + i];
|
||||
if (i == 0 || (i == 2 && b < 0xf) | (i == 3 && b <= 0xf))
|
||||
if (i == 0 || (i == 2 && b <= 0xf) || (i == 3 && b <= 0xf))
|
||||
{
|
||||
// not used, 0=0xd, 2=0xb, 3=0xb
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user