summaryrefslogtreecommitdiff
path: root/graphtft
diff options
context:
space:
mode:
authorlordjaxom <lordjaxom>2005-01-02 14:34:05 +0000
committerlordjaxom <lordjaxom>2005-01-02 14:34:05 +0000
commitab34bebaf03ba9d40f8a7a604263330e4c14614a (patch)
tree7f547e5037d5358b7dbfdb0e3e0455e2c1349511 /graphtft
parent4e0b98bf0cca1afa86b8c655c490392a70b56b36 (diff)
downloadvdr-plugin-text2skin-ab34bebaf03ba9d40f8a7a604263330e4c14614a.tar.gz
vdr-plugin-text2skin-ab34bebaf03ba9d40f8a7a604263330e4c14614a.tar.bz2
- replaced width of space with width of '-'
Diffstat (limited to 'graphtft')
-rw-r--r--graphtft/font.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/graphtft/font.c b/graphtft/font.c
index cd21471..c8c74fa 100644
--- a/graphtft/font.c
+++ b/graphtft/font.c
@@ -1,5 +1,5 @@
/*
- * $Id: font.c,v 1.1 2004/12/19 22:03:24 lordjaxom Exp $
+ * $Id: font.c,v 1.2 2005/01/02 14:34:05 lordjaxom Exp $
*
* Taken from GraphTFT
*/
@@ -115,7 +115,7 @@ bool cGraphtftFont::Load(string Filename, string CacheName, int Size, int Langua
iconv_close(cd);
/* load glyph image into the slot (erase previous one) */
- error = FT_Load_Char( _face, '_', FT_LOAD_RENDER );
+ error = FT_Load_Char( _face, '-', FT_LOAD_RENDER );
if ( error )
return false;