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:
authorMartin Poirier <theeth@yahoo.com>2010-02-06 19:38:53 +0300
committerMartin Poirier <theeth@yahoo.com>2010-02-06 19:38:53 +0300
commit9063f549d5db4347a3d10e39bb2dd78a822d34ae (patch)
treec07fe69f4ee638b028873c65a26d04c39b9dd294 /source/creator
parentd3d399d39d1b088ec18d15196332389aa3762501 (diff)
Wrong text for missing format with -F
Diffstat (limited to 'source/creator')
-rw-r--r--source/creator/creator.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index ed851e8af20..2ad3881a4a0 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -554,11 +554,10 @@ static int set_image_type(int argc, char **argv, void *data)
else if (!strcmp(imtype,"JP2")) scene->r.imtype = R_JP2;
#endif
else printf("\nError: Format from '-F' not known or not compiled in this release.\n");
-
}
return 1;
} else {
- printf("\nError: no blend loaded. cannot use '-x'.\n");
+ printf("\nError: you must specify a format after '-F '.\n");
return 0;
}
}