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:
-rw-r--r--source/blender/src/language.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/src/language.c b/source/blender/src/language.c
index 750483bf789..564f10fd20b 100644
--- a/source/blender/src/language.c
+++ b/source/blender/src/language.c
@@ -370,8 +370,8 @@ int read_languagefile(void)
strcpy(name, ".Blanguages");
lines= BLI_read_file_as_lines(name);
if(lines == NULL) {
- error("File \".Blanguages\" not found");
- return 0;
+ if(G.f & G_DEBUG) printf("File .Blanguages not found\n");
+ return 0;
}
}
}