@@ -15,7 +15,8 @@ public class SavegameInfo
15
15
new Header ( 0x6D , 0x78 , 2 , 0 , 2 , 4 , "1.1.3" , 1 ) ,
16
16
new Header ( 0x6D , 0x78 , 2 , 0 , 2 , 5 , "1.1.4" , 1 ) ,
17
17
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 )
19
20
} ;
20
21
21
22
private static List < Info > Infos = new List < Info > ( )
@@ -82,6 +83,27 @@ public class SavegameInfo
82
83
new HashRegion ( 0x7F8D80 , 0x7F8D84 , 0x035D2C ) ,
83
84
new HashRegion ( 0x82EAB0 , 0x82EAB4 , 0x03787C ) ,
84
85
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 )
85
107
} )
86
108
} ;
87
109
@@ -128,6 +150,12 @@ public HashRegion(int hashOfs, int begOfs, uint size)
128
150
BeginOffset = begOfs ;
129
151
Size = size ;
130
152
}
153
+ public HashRegion ( int hashOfs , uint size )
154
+ {
155
+ HashOffset = hashOfs ;
156
+ BeginOffset = hashOfs + 0x04 ;
157
+ Size = size ;
158
+ }
131
159
}
132
160
133
161
public class Header
0 commit comments