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.c | |
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.c')
-rw-r--r-- | font.c | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: font.c 1.3 2003/10/24 12:51:43 kls Exp $ + * $Id: font.c 1.4 2003/10/24 12:59:35 kls Exp $ */ #include "font.h" @@ -14,12 +14,18 @@ #include "fontosd.c" #include "fontsml.c" +#include "fontfix-iso8859-7.c" +#include "fontosd-iso8859-7.c" +#include "fontsml-iso8859-7.c" + static void *FontData[eDvbCodeSize][eDvbFontSize] = { { FontOsd_iso8859_1, FontFix_iso8859_1, FontSml_iso8859_1 }, + { FontOsd_iso8859_7, FontFix_iso8859_7, FontSml_iso8859_7 } }; static const char *FontCode[eDvbCodeSize] = { "iso8859-1", + "iso8859-7" }; eDvbCode cFont::code = code_iso8859_1; |