churchyard / rpms / blender

Forked from rpms/blender 5 years ago
Clone
Jochen Schmitt 347b0dc
diff -up blender-2.68a/source/blender/blenfont/intern/blf_translation.c.droid blender-2.68a/source/blender/blenfont/intern/blf_translation.c
Jochen Schmitt 347b0dc
--- blender-2.68a/source/blender/blenfont/intern/blf_translation.c.droid	2013-03-20 19:42:09.000000000 +0100
Jochen Schmitt 347b0dc
+++ blender-2.68a/source/blender/blenfont/intern/blf_translation.c	2013-09-04 17:05:04.775210317 +0200
Jochen Schmitt 347b0dc
@@ -59,7 +59,7 @@ unsigned char *BLF_get_unifont(int *unif
Jochen Schmitt e30df76
 {
Jochen Schmitt 7c6e28c
 #ifdef WITH_INTERNATIONAL
Jochen Schmitt 7c6e28c
 	if (unifont_ttf == NULL) {
Jochen Schmitt 7e489cf
-		const char * const fontpath = BLI_get_folder(BLENDER_DATAFILES, "fonts");
Jochen Schmitt 347b0dc
+		const char * const fontpath = "/usr/share/fonts/blender";
Jochen Schmitt 7e489cf
 		if (fontpath) {
Jochen Schmitt 7e489cf
 			char unifont_path[1024];
Jochen Schmitt 7e489cf
 
Jochen Schmitt 7e489cf
@@ -94,7 +94,7 @@ unsigned char *BLF_get_unifont_mono(int
Jochen Schmitt 7e489cf
 {
Jochen Schmitt 7e489cf
 #ifdef WITH_INTERNATIONAL
Jochen Schmitt 7e489cf
 	if (unifont_mono_ttf == NULL) {
Jochen Schmitt 7e489cf
-		const char *fontpath = BLI_get_folder(BLENDER_DATAFILES, "fonts");
Jochen Schmitt 7e489cf
+		const char *fontpath = "/usr/share/fonts/blender";
Jochen Schmitt 7e489cf
 		if (fontpath) {
Jochen Schmitt 7e489cf
 			char unifont_path[1024];
Jochen Schmitt e30df76