From b26a0e5a638c9b490bcbb89456a52fcf57afbef1 Mon Sep 17 00:00:00 2001 From: voroshil Date: Sun, 26 Aug 2007 12:59:47 +0000 Subject: [PATCH] Fix typo Patch from Otvos Attila oattila at chello dot hu git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24210 b3059339-0415-0410-9bf9-f77b7e298cf2 --- stream/tvi_vbi.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stream/tvi_vbi.c b/stream/tvi_vbi.c index 21c3196bdc..4c66d1bdef 100644 --- a/stream/tvi_vbi.c +++ b/stream/tvi_vbi.c @@ -288,7 +288,7 @@ static unsigned int conv2uni(unsigned int p,int lang) }else if (p==0x40){ return latin_subchars[lang][2]; }else if (p>=0x5b && p<=0x60){ - return latin_subchars[lang][p-0x5c+3]; + return latin_subchars[lang][p-0x5b+3]; }else if (p>=0x7b && p<=0x7e){ return latin_subchars[lang][p-0x7b+9]; }