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:
authorCampbell Barton <ideasman42@gmail.com>2010-07-15 15:51:43 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-07-15 15:51:43 +0400
commit5daf9354d255bb40e832e7e0d48008e56158e0b4 (patch)
tree1208c7b4e9ed6dfe35bce7fdf7091ae7b3d87cd0 /source/creator
parentdcc1e6019df2f5655fa38aa9f6c8c98e2e57e4fa (diff)
change some references to .B.blend, .Blog to new names
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index c3499a5788c..34322ea6b73 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -289,7 +289,7 @@ static int print_help(int argc, char **argv, void *data)
printf ("\t\t\"blender --background test.blend --render-output /tmp --render-frame 1\" works as expected.\n\n");
printf ("\nEnvironment Variables:\n");
- printf (" $HOME\t\t\tStore files such as .blender/ .B.blend .Bfs .Blog here.\n");
+ printf (" $HOME\t\t\tStore '.blender/' containing defaults, bookmarks and user scripts.\n");
printf (" $BLENDERPATH System directory to use for data files and scripts.\n");
printf (" For this build of blender the default $BLENDERPATH is...\n");
printf (" \"%s\"\n", blender_path);
@@ -1101,7 +1101,7 @@ int main(int argc, char **argv)
WM_init(C, argc, argv);
/* this is properly initialized with user defs, but this is default */
- BLI_where_is_temp( btempdir, 1 ); /* call after loading the .B.blend so we can read U.tempdir */
+ BLI_where_is_temp( btempdir, 1 ); /* call after loading the startup.blend so we can read U.tempdir */
#ifndef DISABLE_SDL
BLI_setenv("SDL_VIDEODRIVER", "dummy");
@@ -1119,7 +1119,7 @@ int main(int argc, char **argv)
WM_init(C, argc, argv);
- BLI_where_is_temp( btempdir, 0 ); /* call after loading the .B.blend so we can read U.tempdir */
+ BLI_where_is_temp( btempdir, 0 ); /* call after loading the startup.blend so we can read U.tempdir */
}
#ifndef DISABLE_PYTHON
/**