From 41ce9627003ea62ae9bbfe740b7838d1d935708e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 11 Dec 2024 11:10:01 -0500 Subject: [PATCH] Reorder LZ constants --- SabreTools.Models/LZ/Constants.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SabreTools.Models/LZ/Constants.cs b/SabreTools.Models/LZ/Constants.cs index c67a87b..aa5b768 100644 --- a/SabreTools.Models/LZ/Constants.cs +++ b/SabreTools.Models/LZ/Constants.cs @@ -6,12 +6,12 @@ namespace SabreTools.Models.LZ public static readonly byte[] KWAJSignatureBytes = [0x4B, 0x57, 0x41, 0x4A, 0x88, 0xF0, 0x27, 0xD1]; - public const string SZDDPrefix = "SZDD"; - - public static readonly byte[] SZDDSignatureBytes = [0x53, 0x5A, 0x44, 0x44, 0x88, 0xF0, 0x27, 0x33]; - public const string QBasicPrefix = "SZ "; public static readonly byte[] QBasicSignatureBytes = [0x53, 0x5A, 0x20, 0x88, 0xF0, 0x27, 0x33, 0xD1]; + + public const string SZDDPrefix = "SZDD"; + + public static readonly byte[] SZDDSignatureBytes = [0x53, 0x5A, 0x44, 0x44, 0x88, 0xF0, 0x27, 0x33]; } } \ No newline at end of file