bugfix [#23739] # (hash) character can't be used in image filenames

images would convert hashes to numbers on load but it didnt update properly and this is what image sequences is for.
This commit is contained in:
2010-09-20 13:35:55 +00:00
parent f61f7dbb55
commit b859d355c8

View File

@@ -1777,8 +1777,6 @@ static ImBuf *image_load_image_file(Image *ima, ImageUser *iuser, int cfra)
else
BLI_path_abs(str, G.sce);
BLI_path_frame(str, cfra, 0);
/* read ibuf */
ibuf = IMB_loadiffname(str, flag);
}