Updated patch list (thanks Mow and stl25)

This commit is contained in:
Gericom
2026-01-31 12:59:02 +01:00
parent fe2eff8ffe
commit 083155ad9e
3 changed files with 991 additions and 21 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -4,6 +4,5 @@ sealed class PatchListEntry
{ {
public string GameCode { get; init; } = string.Empty; public string GameCode { get; init; } = string.Empty;
public byte GameVersion { get; init; } public byte GameVersion { get; init; }
public string GameName { get; init; } = string.Empty;
public PatchListEntryPatch[] Patches { get; init; } = []; public PatchListEntryPatch[] Patches { get; init; } = [];
} }

View File

@@ -6,7 +6,6 @@ namespace PicoLoaderConverter.PatchList;
sealed class PatchListEntryPatch sealed class PatchListEntryPatch
{ {
public PatchType Type { get; init; } public PatchType Type { get; init; }
public string Description { get; init; } = string.Empty;
// replace // replace
[JsonConverter(typeof(JsonHexNumberConverter))] [JsonConverter(typeof(JsonHexNumberConverter))]