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:
niksedk 2011-02-07 21:21:41 +00:00
parent c4baaa211e
commit 911fbbc48c

View File

@ -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
}