Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Clitherow <aphex@nildram.co.uk>2004-05-13 00:30:18 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2004-05-13 00:30:18 +0400
commite0e14665fa8db968d02af14a5879f8ed856add8e (patch)
tree501a60e3fae2f87b585fb0d98aa5b69c29f50576
parentcf2aef1df9155f73ed26639dc57e7a8d6cbc4ed5 (diff)
quick fix -- bug #1217 (Unable to access AA fonts in Linux)
-rw-r--r--source/blender/src/language.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/language.c b/source/blender/src/language.c
index f7af2b61df3..16c3f1c82e1 100644
--- a/source/blender/src/language.c
+++ b/source/blender/src/language.c
@@ -250,7 +250,7 @@ void start_interface_font(void)
sprintf(U.fontname, "/.bfont.ttf\0");
#else
- sprintf(U.fontname, "/.bfont.ttf\0");
+ sprintf(U.fontname, ".blender/.bfont.ttf\0");
result = FTF_SetFont(U.fontname, U.fontsize);
#endif