Faster copying using vmanips

This commit is contained in:
sfan5
2019-09-08 20:12:38 +02:00
parent ff53a71d58
commit da5abec273
2 changed files with 98 additions and 64 deletions

View File

@ -107,7 +107,9 @@ end
function mh.finish(manip, data)
-- Update map
manip:set_data(data)
if data ~= nil then
manip:set_data(data)
end
manip:write_to_map()
manip:update_map()
end