Skip to content

Commit bf06ada

Browse files
author
FluffyFishGames
committed
Updated for 1.3.0.
1 parent 21f857d commit bf06ada

File tree

2 files changed

+30
-2
lines changed

2 files changed

+30
-2
lines changed

Assets/Plugins/Savegame/SavegameInfo.cs

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ public class SavegameInfo
1515
new Header(0x6D, 0x78, 2, 0, 2, 4, "1.1.3", 1),
1616
new Header(0x6D, 0x78, 2, 0, 2, 5, "1.1.4", 1),
1717
new Header(0x20006, 0x20008, 2, 0, 2, 6, "1.2.0", 2),
18-
new Header(0x20006, 0x20008, 2, 0, 2, 7, "1.2.1", 2)
18+
new Header(0x20006, 0x20008, 2, 0, 2, 7, "1.2.1", 2),
19+
new Header(0x40002, 0x40008, 2, 0, 2, 8, "1.3.0", 3)
1920
};
2021

2122
private static List<Info> Infos = new List<Info>()
@@ -82,6 +83,27 @@ public class SavegameInfo
8283
new HashRegion(0x7F8D80, 0x7F8D84, 0x035D2C),
8384
new HashRegion(0x82EAB0, 0x82EAB4, 0x03787C),
8485
new HashRegion(0x866330, 0x866334, 0x26899C)
86+
}),
87+
new Info(0xACED80, 0x1D7310, 0x1DF7E0, new HashRegion[] {
88+
new HashRegion(0x000110, 0x1D6D5C),
89+
new HashRegion(0x1D6E70, 0x323EEC),
90+
new HashRegion(0x4FAE70, 0x035D2C),
91+
new HashRegion(0x530BA0, 0x03788C),
92+
new HashRegion(0x568540, 0x035D2C),
93+
new HashRegion(0x59E270, 0x03788C),
94+
new HashRegion(0x5D5c10, 0x035D2C),
95+
new HashRegion(0x60B940, 0x03788C),
96+
new HashRegion(0x6432E0, 0x035D2C),
97+
new HashRegion(0x679010, 0x03788C),
98+
new HashRegion(0x6B09B0, 0x035D2C),
99+
new HashRegion(0x6E66E0, 0x03788C),
100+
new HashRegion(0x71E080, 0x035D2C),
101+
new HashRegion(0x753DB0, 0x03788C),
102+
new HashRegion(0x78B750, 0x035D2C),
103+
new HashRegion(0x7C1480, 0x03788C),
104+
new HashRegion(0x7F8E20, 0x035D2C),
105+
new HashRegion(0x82EB50, 0x03788C),
106+
new HashRegion(0x8663E0, 0x26899C)
85107
})
86108
};
87109

@@ -128,6 +150,12 @@ public HashRegion(int hashOfs, int begOfs, uint size)
128150
BeginOffset = begOfs;
129151
Size = size;
130152
}
153+
public HashRegion(int hashOfs, uint size)
154+
{
155+
HashOffset = hashOfs;
156+
BeginOffset = hashOfs + 0x04;
157+
Size = size;
158+
}
131159
}
132160

133161
public class Header

ProjectSettings/ProjectSettings.asset

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ PlayerSettings:
119119
16:10: 0
120120
16:9: 1
121121
Others: 0
122-
bundleVersion: 0.9.4
122+
bundleVersion: 0.9.4p2
123123
preloadedAssets: []
124124
metroInputSource: 0
125125
wsaTransparentSwapchain: 0

0 commit comments

Comments
 (0)