Closed evanmcc closed 7 months ago
I ran across this one today and fixed it.
Message: Object reference is Nil $0000000000862FE5 line 1883 of Units/FreeDevelopedPatch.inc
Line 1883 of Units/FreeDevelopedPatch.inc is...
TmpEdges.Destroy;
Now if TmpEdges is Nil (per the exception message, there is nothing to destroy. So...
if TmpEdges <> nil then
begin
TmpEdges.Destroy;
TmpEdges := nil;
end;
and all is well.
I need to fork FreeShip-Plus on to my Github account with fixes like this and a few others, and send a pull request to @markmal but until then, this patch works for me.
I separated all of my surfaces into different layers (with different colors, otherwise it's hard to tell if they're all on different layers). Now, whenever I try to develop plates, the program crashes with the stacktrace below: