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:
Diffstat (limited to 'UVtools.Core/FileFormats/LGSFile.cs')
-rw-r--r--UVtools.Core/FileFormats/LGSFile.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/UVtools.Core/FileFormats/LGSFile.cs b/UVtools.Core/FileFormats/LGSFile.cs
index 9a3a0a6..97f7cbc 100644
--- a/UVtools.Core/FileFormats/LGSFile.cs
+++ b/UVtools.Core/FileFormats/LGSFile.cs
@@ -99,8 +99,8 @@ namespace UVtools.Core.FileFormats
public unsafe byte[] Encode(Mat mat)
{
- List<byte> rawData = new List<byte>();
- List<byte> chunk = new List<byte>();
+ List<byte> rawData = new();
+ List<byte> chunk = new();
var spanMat = mat.GetBytePointer();
var imageLength = mat.GetLength();