Skip to content

Commit

Permalink
Subtitles: Fix an error in subtitle enumeration logic.
Browse files Browse the repository at this point in the history
Fixes the re-enablement of subtitles after a teletext menu has been
displayed.

Also refs #9277
  • Loading branch information
Mark Kendall committed Oct 3, 2011
1 parent a751865 commit d2cc12f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mythtv/libs/libmythtv/mythplayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,8 @@ enum
kDisplayTextSubtitle = 0x020,
kDisplayDVDButton = 0x040,
kDisplayRawTextSubtitle = 0x080,
kDisplayAllCaptions = 0x100,
kDisplayTeletextMenu = 0x200,
kDisplayAllCaptions = 0x0FF,
kDisplayTeletextMenu = 0x100,
};

class DecoderThread : public MThread
Expand Down

0 comments on commit d2cc12f

Please sign in to comment.