diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-24 13:13:02 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2003-10-24 13:13:02 +0200 |
commit | 27d95dfb3964552b4a69ac29d38c5fbd9a00fdc8 (patch) | |
tree | 22213284660cffa0eaabf7ff0476e3295c26d7d7 /font.h | |
parent | c94570e69dfca940ba04829debb93e421f77c4f0 (diff) | |
download | vdr-27d95dfb3964552b4a69ac29d38c5fbd9a00fdc8.tar.gz vdr-27d95dfb3964552b4a69ac29d38c5fbd9a00fdc8.tar.bz2 |
Greek language texts now use iso8859-7 character set
Diffstat (limited to 'font.h')
-rw-r--r-- | font.h | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: font.h 1.3 2003/10/24 12:52:46 kls Exp $ + * $Id: font.h 1.4 2003/10/24 12:59:45 kls Exp $ */ #ifndef __FONT_H @@ -21,7 +21,8 @@ enum eDvbFont { enum eDvbCode { code_iso8859_1, -#define eDvbCodeSize (code_iso8859_1 + 1) + code_iso8859_7 +#define eDvbCodeSize (code_iso8859_7 + 1) }; class cFont { |