fix for own mistake & fix some comments.
This commit is contained in:
@@ -5642,11 +5642,10 @@ static BHead *read_data_into_oldnewmap(FileData *fd, BHead *bhead, const char *a
|
||||
while(bhead && bhead->code==DATA) {
|
||||
void *data;
|
||||
#if 0
|
||||
/* XXX DUMB DEBUGGING OPTION TO GIVE NAMES for guarded malloc errors */
|
||||
/* XXX DUMB DEBUGGING OPTION TO GIVE NAMES for guarded malloc errors */
|
||||
short *sp= fd->filesdna->structs[bhead->SDNAnr];
|
||||
char *allocname = fd->filesdna->types[ sp[0] ];
|
||||
char *tmp= malloc(100);
|
||||
|
||||
allocname = fd->filesdna->types[ sp[0] ];
|
||||
strcpy(tmp, allocname);
|
||||
data= read_struct(fd, bhead, tmp);
|
||||
#else
|
||||
@@ -12707,7 +12706,6 @@ static int object_in_any_scene(Main *mainvar, Object *ob)
|
||||
return 0;
|
||||
}
|
||||
|
||||
/* when *lib set, it also does objects that were in the appended group */
|
||||
static void give_base_to_objects(Main *mainvar, Scene *sce, Library *lib, const short idcode, const short is_link)
|
||||
{
|
||||
Object *ob;
|
||||
@@ -12770,7 +12768,6 @@ static void give_base_to_objects(Main *mainvar, Scene *sce, Library *lib, const
|
||||
}
|
||||
}
|
||||
|
||||
/* when *lib set, it also does objects that were in the appended group */
|
||||
static void give_base_to_groups(Main *mainvar, Scene *scene)
|
||||
{
|
||||
Group *group;
|
||||
|
||||
@@ -179,7 +179,8 @@ struct PropertyRNA {
|
||||
* since python will convert int/bool/pointer's */
|
||||
struct StructRNA *srna; /* attributes attached directly to this collection */
|
||||
|
||||
/* python handle to hold all callbacks in a tuple */
|
||||
/* python handle to hold all callbacks
|
||||
* (in a pointer array at the moment, may later be a tuple) */
|
||||
void *py_data;
|
||||
};
|
||||
|
||||
|
||||
@@ -144,7 +144,7 @@ static void do_math(bNode *node, float *out, float *in, float *in2)
|
||||
if( in2[0] != 0.0f )
|
||||
out[0]= floorf(in[0] / in2[0] + 0.5f) * in2[0];
|
||||
else
|
||||
floorf(in[0] + 0.5f);
|
||||
out[0]= floorf(in[0] + 0.5f);
|
||||
|
||||
}
|
||||
break;
|
||||
|
||||
Reference in New Issue
Block a user