Fix part of code in load_image_single() wrongly disabled when WITH_OPENEXR was disabled.

This commit is contained in:
Bastien Montagne 2015-06-27 09:52:52 +02:00
parent ab85c5f980
commit e78b03f9e9

@ -3441,7 +3441,9 @@ static ImBuf *load_image_single(
ibuf = NULL;
}
}
else {
else
#endif
{
image_initialize_after_load(ima, ibuf);
*r_assign = true;
@ -3457,10 +3459,6 @@ static ImBuf *load_image_single(
imapf->packedfile = newPackedFile(NULL, filepath, ID_BLEND_PATH(G.main, &ima->id));
}
}
#else
image_initialize_after_load(ima, ibuf);
*r_assign = true;
#endif
}
else {
ima->ok = 0;