From 98ab0792c72a9b7ef8c50a10f3f9a9b34f88148c Mon Sep 17 00:00:00 2001 From: CosmicDreamsOfCode <33284629+CosmicDreamsOfCode@users.noreply.github.com> Date: Mon, 17 Jun 2019 19:57:11 +0100 Subject: [PATCH] Correct file format name for SDFTOC "Snowdrop Engine" instead of "Snow Engine" --- Switch_FileFormatsMain/FileFormats/Archives/SDF.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Switch_FileFormatsMain/FileFormats/Archives/SDF.cs b/Switch_FileFormatsMain/FileFormats/Archives/SDF.cs index cd6681b5..078e2d65 100644 --- a/Switch_FileFormatsMain/FileFormats/Archives/SDF.cs +++ b/Switch_FileFormatsMain/FileFormats/Archives/SDF.cs @@ -16,7 +16,7 @@ namespace FirstPlugin public FileType FileType { get; set; } = FileType.Archive; public bool CanSave { get; set; } - public string[] Description { get; set; } = new string[] { "Snow Engine Data Table Of Contents" }; + public string[] Description { get; set; } = new string[] { "Snowdrop Engine Data Table Of Contents" }; public string[] Extension { get; set; } = new string[] { "*.sdftoc" }; public string FileName { get; set; } public string FilePath { get; set; }