diff --git a/images/icon.ico b/images/icon.ico
deleted file mode 100644
index 78e496d0..00000000
Binary files a/images/icon.ico and /dev/null differ
diff --git a/modules/save-and-load.js b/modules/save-and-load.js
index 3e067e58..2ee79218 100644
--- a/modules/save-and-load.js
+++ b/modules/save-and-load.js
@@ -1175,7 +1175,9 @@ function parseLoadedData(data) {
// 1.61 changed oceanicPattern from rect to image
const pattern = document.getElementById("oceanic");
- pattern.innerHTML = '';
+ const filter = pattern.firstElementChild.getAttribute("filter");
+ const href = filter ? "./images/" + filter.replace("url(#", "").replace(")", "") + ".png" : "";
+ pattern.innerHTML = ``;
}
}()