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-07 01:40:38 +0400
committerSimon Clitherow <aphex@nildram.co.uk>2004-05-07 01:40:38 +0400
commit9936d283824c77246e3dcefb214acb6c76d6fa0d (patch)
tree44de0acb28feb9c2b98677a1e958c09320909649 /source/blender/src/language.c
parent8d18aade3f69dba665794fadbbd9014ca364bf82 (diff)
- switched a strcat and strcpy pair... doh! (well spotted b-ix!)
- appended "./blender" to %HOME% return for Win32. Is consistant now with the other returns for Win.
Diffstat (limited to 'source/blender/src/language.c')
-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 54a7e4dffb1..f7af2b61df3 100644
--- a/source/blender/src/language.c
+++ b/source/blender/src/language.c
@@ -351,8 +351,8 @@ int read_languagefile(void)
strcat(name, "/Contents/Resources/.Blanguages");
#elif defined (WIN32)
/* Check the installation dir in Windows */
- strcat(name, BLI_gethome());
- strcpy(name,"/.Blanguages");
+ strcpy(name, BLI_gethome());
+ strcat(name,"/.Blanguages");
#else
strcpy(name, ".blender/.Blanguages");
#endif