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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-08 10:11:39 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2010-07-08 10:11:39 +0400
commit629248ae3ada382f4bc4394500dcb408ee14e455 (patch)
tree00aa4664b1498d114d50ad120fa0d97795b9a689 /source/blender/freestyle/intern/application
parent70b1baefc53421e8511ad344ce16b12939eb31ec (diff)
Fix for path changes in the trunk revision 29935.
This commit should also fix a crash in MinGW32 builds.
Diffstat (limited to 'source/blender/freestyle/intern/application')
-rwxr-xr-xsource/blender/freestyle/intern/application/AppConfig.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/intern/application/AppConfig.cpp b/source/blender/freestyle/intern/application/AppConfig.cpp
index 761f0104dd1..7157d7a89aa 100755
--- a/source/blender/freestyle/intern/application/AppConfig.cpp
+++ b/source/blender/freestyle/intern/application/AppConfig.cpp
@@ -33,7 +33,7 @@ Path* Path::_pInstance = 0;
Path::Path() {
// get the root directory
//soc
- setRootDir( BLI_gethome_folder("scripts", BLI_GETHOME_ALL) );
+ setRootDir( BLI_get_folder(BLENDER_SCRIPTS, NULL) );
_pInstance = this;
}