You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: PSDX/PsxSaveData.cs
+46-3Lines changed: 46 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -93,6 +93,8 @@ public class CrashBandicoot2SaveData : PsxSaveData
93
93
94
94
privateconstint_secretsOffset=0x1B8;
95
95
96
+
privateconstint_lastPlayedLevelOffset=0x188;
97
+
96
98
privateconstbyte_polarTrickFlag=0x20;
97
99
98
100
/// <summary>
@@ -133,10 +135,17 @@ public class CrashBandicoot2SaveData : PsxSaveData
133
135
/// Checks whether the specified <paramref name="level"/> number exists, and throws an exception if not.
134
136
/// </summary>
135
137
/// <param name="level">The number of the level to check for.</param>
136
-
/// <exception cref="ArgumentOutOfRangeException">The specified <paramref name="level"/> number is less than one or greater than twenty-seven.</exception>
137
-
privatestaticvoidCheckLevelNumber(intlevel)
138
+
/// <param name="includeBossLevels">
139
+
/// Determines whether to extend the range of allowed values for <paramref name="level"/> by including the boss levels.
0 commit comments