Format title for use with UWT mnemonics

This commit is contained in:
Michael Becker 2019-10-31 02:53:48 -04:00
parent 34914358e0
commit 1b891eaa0b

View File

@ -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;
}