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:
authorTon Roosendaal <ton@blender.org>2007-03-25 17:50:51 +0400
committerTon Roosendaal <ton@blender.org>2007-03-25 17:50:51 +0400
commitac2ff8f97c8f92136fbc0915cd9341870be99b60 (patch)
tree94547440c6aa85b6a610d58928ad29a4abe21cab /source/creator/creator.c
parenta9d69b332e27ecd1c851eea446a39fc8c40cefbb (diff)
Running Blender in debug mode now prints the subversion of .blend files.
Diffstat (limited to 'source/creator/creator.c')
-rw-r--r--source/creator/creator.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/creator/creator.c b/source/creator/creator.c
index 25d3c9ce88b..abcd23fbb5c 100644
--- a/source/creator/creator.c
+++ b/source/creator/creator.c
@@ -155,19 +155,19 @@ static void blender_esc(int sig)
static void print_version(void)
{
#ifdef BUILD_DATE
- printf ("Blender %d.%02d Build\n", G.version/100, G.version%100);
+ printf ("Blender %d.%02d (sub %d) Build\n", G.version/100, G.version%100, BLENDER_SUBVERSION);
printf ("\tbuild date: %s\n", build_date);
printf ("\tbuild time: %s\n", build_time);
printf ("\tbuild platform: %s\n", build_platform);
printf ("\tbuild type: %s\n", build_type);
#else
- printf ("Blender %d.%02d\n", G.version/100, G.version%100);
+ printf ("Blender %d.%02d (sub %d) Build\n", G.version/100, G.version%100, BLENDER_SUBVERSION);
#endif
}
static void print_help(void)
{
- printf ("Blender V %d.%02d\n", G.version/100, G.version%100);
+ printf ("Blender %d.%02d (sub %d) Build\n", G.version/100, G.version%100, BLENDER_SUBVERSION);
printf ("Usage: blender [options ...] [file]\n");
printf ("\nRender options:\n");
@@ -415,7 +415,7 @@ int main(int argc, char **argv)
break;
case 'd':
G.f |= G_DEBUG; /* std output printf's */
- printf ("Blender V %d.%02d\n", G.version/100, G.version%100);
+ printf ("Blender %d.%02d (sub %d) Build\n", G.version/100, G.version%100, BLENDER_SUBVERSION);
MEM_set_memory_debug();
#ifdef NAN_BUILDINFO
printf("Build: %s %s %s %s\n", build_date, build_time, build_platform, build_type);