diff options
author | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-13 10:51:16 +0100 |
---|---|---|
committer | Tobias Grimm <tobias@e-tobi.loc> | 2008-12-13 10:51:16 +0100 |
commit | b4047ea57428a788456ecb02bc3fc6c5d83bf232 (patch) | |
tree | f346c1181b786177c9e67469ad0cf759dfd42ddf /ttxtsubsdisplayer.c | |
parent | e98281852544a159522de0e561ac64c23c447468 (diff) | |
download | vdr-plugin-ttxtsubs-0.0.3c.tar.gz vdr-plugin-ttxtsubs-0.0.3c.tar.bz2 |
- Fixed problems when used with more than one device (I hope)v0.0.3c
Diffstat (limited to 'ttxtsubsdisplayer.c')
-rw-r--r-- | ttxtsubsdisplayer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ttxtsubsdisplayer.c b/ttxtsubsdisplayer.c index de9348c..5f2f0a6 100644 --- a/ttxtsubsdisplayer.c +++ b/ttxtsubsdisplayer.c @@ -224,7 +224,7 @@ void cTtxtSubsPlayer::SearchLanguagePage(uint8_t *p, int len) ((buf[i+4] - '0') << 8) + ((buf[i+5] - '0') << 4) + (buf[i+6] - '0'); - if(page >= 0x100 && page <= 0x900) { + if(page >= 0x100 && page < 0x900) { if(page >= 0x800) page -= 0x800; |