From 31d304b099156daac59d5e528ea0b83e1eb0dd1b Mon Sep 17 00:00:00 2001 From: Denis <93516910+Bussun@users.noreply.github.com> Date: Sun, 16 Jan 2022 15:16:31 +0100 Subject: [PATCH] Turns out the Yaz0 is big endian yes, even with SM3DAS --- BMGEditor/FS/Yaz0Stream.cs | 2 +- BMGEditor/Program.cs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/BMGEditor/FS/Yaz0Stream.cs b/BMGEditor/FS/Yaz0Stream.cs index d6e9d8f..d1da89a 100644 --- a/BMGEditor/FS/Yaz0Stream.cs +++ b/BMGEditor/FS/Yaz0Stream.cs @@ -6,7 +6,7 @@ using System.IO; namespace BMGEditor { - public class Yaz0Stream : MemoryStream //ONLY WORKS WITH BIG ENDIAN - TO REWRITE !! + public class Yaz0Stream : MemoryStream { public Yaz0Stream(Stream backend) : base(1) diff --git a/BMGEditor/Program.cs b/BMGEditor/Program.cs index 9d0e107..79a131e 100644 --- a/BMGEditor/Program.cs +++ b/BMGEditor/Program.cs @@ -8,8 +8,8 @@ namespace BMGEditor public static class Variables { public const string softwareName = "Luma"; - public const string softwareVersion = "v1.1"; - public const UInt64 build = 2; + public const string softwareVersion = "build 3"; + public const UInt64 build = 3; public const bool isBeta = true; }