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:
authorChris Want <cwant@ualberta.ca>2003-12-16 04:27:37 +0300
committerChris Want <cwant@ualberta.ca>2003-12-16 04:27:37 +0300
commit356cf7953482891afe3dd289b1584b355de23b17 (patch)
treee746ec1bff3654872a80ecb136cb95d2a1fa856c /source/blender/makesdna/intern/makesdna.c
parente4d63d5764c1b23d34e66e57148048654a983159 (diff)
OK, My turn to break things ...
The maximum vertex count for a mesh has been raised from 65000 to 2000000000L (yep, 2 billion!). Please test! Chris
Diffstat (limited to 'source/blender/makesdna/intern/makesdna.c')
-rw-r--r--source/blender/makesdna/intern/makesdna.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/makesdna/intern/makesdna.c b/source/blender/makesdna/intern/makesdna.c
index a38b89dfbcf..5f3673e95c7 100644
--- a/source/blender/makesdna/intern/makesdna.c
+++ b/source/blender/makesdna/intern/makesdna.c
@@ -1041,7 +1041,7 @@ int make_structDNA(FILE *file)
void make_bad_file(char *file)
{
FILE *fp= fopen(file, "w");
- fprintf(fp, "ERROR! Cannot make correct DNA.c file\n");
+ fprintf(fp, "ERROR! Cannot make correct DNA.c file, STUPID!\n");
fclose(fp);
}