Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/sn4k3/UVtools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTiago Conceição <Tiago_caza@hotmail.com>2021-08-19 02:01:06 +0300
committerTiago Conceição <Tiago_caza@hotmail.com>2021-08-19 02:01:06 +0300
commit049d63aa38784140b589b0ae8e7ccaa36575bcd7 (patch)
tree4eddebecb7a63ea4cff2d446dde1cb5799339034 /UVtools.Core/FileFormats/FDGFile.cs
parent56d80684cc975163e68545dc4af659661a57da96 (diff)
Refactorings
Diffstat (limited to 'UVtools.Core/FileFormats/FDGFile.cs')
-rw-r--r--UVtools.Core/FileFormats/FDGFile.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/UVtools.Core/FileFormats/FDGFile.cs b/UVtools.Core/FileFormats/FDGFile.cs
index 2f02dc4..879063a 100644
--- a/UVtools.Core/FileFormats/FDGFile.cs
+++ b/UVtools.Core/FileFormats/FDGFile.cs
@@ -1032,7 +1032,7 @@ namespace UVtools.Core.FileFormats
if (HeaderSettings.EncryptionKey == 0)
{
- string hash = Helpers.ComputeSHA1Hash(layerDef.EncodedRle);
+ string hash = CryptExtensions.ComputeSHA1Hash(layerDef.EncodedRle);
if (layersHash.TryGetValue(hash, out layerDefHash))
{
layerDef.DataAddress = layerDefHash.DataAddress;