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>2009-08-27 19:22:41 +0400
committerCampbell Barton <ideasman42@gmail.com>2009-08-27 19:22:41 +0400
commit2c7065e541f1ea51dbeea045bc3214ce22d4ca82 (patch)
treed690996b1baa9204e3c9f46140ba67e9da63e3c6 /source/blender/blenloader/intern/readblenentry.c
parent12a0f2c0987688b2fcf8daf44d9462b524fe139a (diff)
- assigning vectors in the BGE wasn't updating the vector from the callback
- Pkey only starts in BGE in Object Mode - warning in readblenentry.c, is silent on 64bit too.
Diffstat (limited to 'source/blender/blenloader/intern/readblenentry.c')
-rw-r--r--source/blender/blenloader/intern/readblenentry.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenloader/intern/readblenentry.c b/source/blender/blenloader/intern/readblenentry.c
index ac561eb6186..33641a0b004 100644
--- a/source/blender/blenloader/intern/readblenentry.c
+++ b/source/blender/blenloader/intern/readblenentry.c
@@ -200,7 +200,7 @@ void BLO_blendhandle_print_sizes(BlendHandle *bh, void *fp)
buf[2]= buf[2]?buf[2]:' ';
buf[3]= buf[3]?buf[3]:' ';
- fprintf(fp, "['%.4s', '%s', %d, %ld ], \n", buf, name, bhead->nr, (intptr_t)bhead->len+sizeof(BHead));
+ fprintf(fp, "['%.4s', '%s', %d, %ld ], \n", buf, name, bhead->nr, (long int)bhead->len+sizeof(BHead));
}
}
fprintf(fp, "]\n");