Skip to content

Commit f8c5526

Browse files
committed
Update acnl_convert_csharp_pseudo.cs
1 parent 79332a7 commit f8c5526

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

acnl_convert_csharp_pseudo.cs

+20-20
Original file line numberDiff line numberDiff line change
@@ -121,30 +121,30 @@ public static byte[] DataSortACNL(byte[] data)
121121

122122
Dictionary<(int, int), int> OffsetsProTexChunk = new Dictionary<(int, int), int>()
123123
{
124-
// Front Chunk
125-
{ ( 0x000, 0x200), 0x200 },
126-
// Back Chunk
127-
{ ( 0x200, 0x400), 0x000 },
128-
// Front Bottom Chunk
129-
{ ( 0x600, 0x700), 0x600 },
130-
// Back Bottom Chunk
131-
{ ( 0x700, 0x800), 0x400 },
132-
// Left Sleeve Chunk
133-
{ ( 0x400, 0x500), 0x500 },
134-
// Right Sleeve Chunk
135-
{ ( 0x500, 0x600), 0x700 },
124+
// Front Chunk
125+
{ ( 0x000, 0x200), 0x200 },
126+
// Back Chunk
127+
{ ( 0x200, 0x400), 0x000 },
128+
// Front Bottom Chunk
129+
{ ( 0x600, 0x700), 0x600 },
130+
// Back Bottom Chunk
131+
{ ( 0x700, 0x800), 0x400 },
132+
// Left Sleeve Chunk
133+
{ ( 0x400, 0x500), 0x500 },
134+
// Right Sleeve Chunk
135+
{ ( 0x500, 0x600), 0x700 },
136136
};
137137

138138
Dictionary<(int, int), int> OffsetsProStandeeTexChunk = new Dictionary<(int, int), int>()
139139
{
140-
// Top Left Chunk
141-
{ ( 0x000, 0x200), 0x000 },
142-
// Bottom Left Chunk
143-
{ ( 0x200, 0x400), 0x400 },
144-
// Top Right Chunk
145-
{ ( 0x400, 0x600), 0x200 },
146-
// Bottom Right Chunk
147-
{ ( 0x600, 0x800), 0x600 }
140+
// Top Left Chunk
141+
{ ( 0x000, 0x200), 0x000 },
142+
// Bottom Left Chunk
143+
{ ( 0x200, 0x400), 0x400 },
144+
// Top Right Chunk
145+
{ ( 0x400, 0x600), 0x200 },
146+
// Bottom Right Chunk
147+
{ ( 0x600, 0x800), 0x600 }
148148
};
149149

150150
// Check data type

0 commit comments

Comments
 (0)