summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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];
}