From 1b891eaa0b9b309a4835458a8a0e9df866434deb Mon Sep 17 00:00:00 2001 From: Michael Becker Date: Thu, 31 Oct 2019 02:53:48 -0400 Subject: [PATCH] Format title for use with UWT mnemonics --- .../FileSystem/Moero/DownhillNight/PKDDataFormat.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/Moero/DownhillNight/PKDDataFormat.cs b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/Moero/DownhillNight/PKDDataFormat.cs index e8231d8e..278ef29c 100644 --- a/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/Moero/DownhillNight/PKDDataFormat.cs +++ b/CSharp/Plugins/UniversalEditor.Plugins.FileSystem/DataFormats/FileSystem/Moero/DownhillNight/PKDDataFormat.cs @@ -17,8 +17,8 @@ namespace UniversalEditor.DataFormats.FileSystem.Moero.DownhillNight { _dfr = base.MakeReferenceInternal(); _dfr.Capabilities.Add(typeof(FileSystemObjectModel), DataFormatCapabilities.All); - _dfr.ImportOptions.Add(new CustomOptionNumber("EncryptionKey", "Encryption &key:", 0xC5, 0, 255)); - _dfr.ExportOptions.Add(new CustomOptionNumber("EncryptionKey", "Encryption &key:", 0xC5, 0, 255)); + _dfr.ImportOptions.Add(new CustomOptionNumber("EncryptionKey", "Encryption _key:", 0xC5, 0, 255)); + _dfr.ExportOptions.Add(new CustomOptionNumber("EncryptionKey", "Encryption _key:", 0xC5, 0, 255)); } return _dfr; }