Skip to content

Commit

Permalink
Subtitles: Add a leading space to teletext subtitle backgrounds.
Browse files Browse the repository at this point in the history
This is according to the spec.
  • Loading branch information
stichnot committed Jun 2, 2012
1 parent 0c92bfd commit b1eb74d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion mythtv/libs/libmythtv/teletextscreen.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@ void TeletextScreen::DrawLine(const uint8_t *page, uint row, int lang)
endbox = true;
goto ctrl;
case 0x0b: // start box
if (x < kTeletextColumns - 1 && ((page[x + 1] & 0x7F) != 0x0b))
if (x < kTeletextColumns - 1 && ((page[x + 1] & 0x7F) == 0x0b))
startbox = true;
goto ctrl;
case 0x0c: // normal height
Expand Down

0 comments on commit b1eb74d

Please sign in to comment.