summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorvoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-26 12:59:47 +0000
committervoroshil <voroshil@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-08-26 12:59:47 +0000
commitb26a0e5a638c9b490bcbb89456a52fcf57afbef1 (patch)
tree18976f947e4f6fb6c9167a28428cd439f0a1707d /stream
parent28a1211bac9fa09def492d8f4916be8fe7709013 (diff)
downloadmpv-b26a0e5a638c9b490bcbb89456a52fcf57afbef1.tar.bz2
mpv-b26a0e5a638c9b490bcbb89456a52fcf57afbef1.tar.xz
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
Diffstat (limited to 'stream')
-rw-r--r--stream/tvi_vbi.c2
1 files changed, 1 insertions, 1 deletions
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];
}