From 95ac7236ff0562c6c23814ef63fef776f0d7d0ec Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Sun, 29 Sep 2019 22:20:34 -0700 Subject: [PATCH] Fix PS4 version finding --- DICUI.Library/Utilities/DumpEnvironment.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DICUI.Library/Utilities/DumpEnvironment.cs b/DICUI.Library/Utilities/DumpEnvironment.cs index e8236d3f..48cd37b7 100644 --- a/DICUI.Library/Utilities/DumpEnvironment.cs +++ b/DICUI.Library/Utilities/DumpEnvironment.cs @@ -1838,7 +1838,7 @@ namespace DICUI.Utilities { using (BinaryReader br = new BinaryReader(File.OpenRead(paramSfoPath))) { - br.BaseStream.Seek(0x9A4, SeekOrigin.Begin); + br.BaseStream.Seek(-0x08, SeekOrigin.End); return new string(br.ReadChars(5)); } }