Starfield; Fo76utils latest: Unable to copy things between nifs anymore
Before the qt6 update, I was able to copy these things no problem. Now, pasting a BSGeometry. BSLightingShaderProperty or the NiIntergerExtra data under a BSGeometry node does nothing -- and I get errors trying to even copy collision.
This is on Windows 11 64-bit, Nifskope commit 9a3c1f7f.
I thought I could still copy geometry, but now it's not letting me copy anything. I have the pre-qt6 build at the ready so not world-ending yet lol
Fixed by this commit, at least for Copy Branch and Duplicate Branch. The spells were broken by this code:
QDataStream ds( &buffer );
ds << blocks.count();
expecting that blocks.count() would return an 'int', but Qt 6 changed that to 'qsizetype', which is a 64-bit type.
As far as I can tell, copying and pasting single blocks did not have the issue, but more testing is definitely needed, as there could well be more similar problems.
Thanks! I'll try to setup both builds in the same msys2 env so I can switch between more quickly.
Is this your preferred method of getting bug reports?
This issue seems to be resolved thanks!