changeset 1359:e0188a73c02a

fontpath fixed again...
author arpi
date Fri, 20 Jul 2001 02:03:50 +0000
parents d8bfe68ea2d8
children 3ab0d3f21f51
files libvo/font_load.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/font_load.c	Fri Jul 20 01:56:34 2001 +0000
+++ b/libvo/font_load.c	Fri Jul 20 02:03:50 2001 +0000
@@ -51,7 +51,7 @@
 desc=malloc(sizeof(font_desc_t));if(!desc) return NULL;
 memset(desc,0,sizeof(font_desc_t));
 
-desc->fpath="";
+desc->fpath=get_path("font/");
 
 f=fopen(fname,"rt");if(!f){ printf("font: can't open file: %s\n",fname); return NULL;}