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:
authorTon Roosendaal <ton@blender.org>2004-11-08 14:15:31 +0300
committerTon Roosendaal <ton@blender.org>2004-11-08 14:15:31 +0300
commit7f6188241306446f800b302d1258f38fa9fd9c1d (patch)
tree76c5afc1e7fb3ad55796b94628ce428f5d65a7a4 /source/blender/src/language.c
parent459deaf11f3f451b2f30b97b1e23e72343398445 (diff)
Typo in path searching for ttf fonts... needed a trailing "/"
Diffstat (limited to 'source/blender/src/language.c')
-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 3d3853beb28..d974a51073b 100644
--- a/source/blender/src/language.c
+++ b/source/blender/src/language.c
@@ -223,7 +223,7 @@ void start_interface_font(void)
if(!result) {
strcpy(tstr, BLI_gethome());
if (strstr(tstr,".blender") == 0) {
- strcat(tstr,".blender/");
+ strcat(tstr,"/.blender/");
}
strcat(tstr, U.fontname);
result = FTF_SetFont(tstr, U.fontsize);