From 959da7477d1718fb8f9a5c500df57a318689b84d Mon Sep 17 00:00:00 2001 From: Lawrence D'Oliveiro Date: Tue, 4 Feb 2014 18:49:30 +0100 Subject: [PATCH] Fix missing $BLENDER_USER_DATAFILES in command line help text. Reviewed By: brecht Differential Revision: https://developer.blender.org/D249 --- source/creator/creator.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/creator/creator.c b/source/creator/creator.c index 8559a08d8b6..82b86a2d3b0 100644 --- a/source/creator/creator.c +++ b/source/creator/creator.c @@ -370,7 +370,7 @@ static int print_help(int UNUSED(argc), const char **UNUSED(argv), void *data) printf(" $BLENDER_USER_CONFIG Directory for user configuration files.\n"); printf(" $BLENDER_USER_SCRIPTS Directory for user scripts.\n"); printf(" $BLENDER_SYSTEM_SCRIPTS Directory for system wide scripts.\n"); - printf(" Directory for user data files (icons, translations, ..).\n"); + printf(" $BLENDER_USER_DATAFILES Directory for user data files (icons, translations, ..).\n"); printf(" $BLENDER_SYSTEM_DATAFILES Directory for system wide data files.\n"); printf(" $BLENDER_SYSTEM_PYTHON Directory for system python libraries.\n"); #ifdef WIN32