[Bf-committers] revision 11276 does not compile under msvc.

jean-michel soler jmsoler at free.fr
Sun Jul 15 14:59:55 CEST 2007


in "\blender\source\blender\blenloader\intern\readfile.c", line 6535 :

"
for(ob = main->object.first; ob; ob= ob->id.next) {
                ListBase *list;
                list = &ob->constraints;
                float temp_size[3];
...
"

should be :

"
for(ob = main->object.first; ob; ob= ob->id.next) {
                ListBase *list;
                float temp_size[3];
                list = &ob->constraints;
....
"

jms



More information about the Bf-committers mailing list