Skip to content

Commit

Permalink
Fixed a nullpointer when inputting an empty progress array
Browse files Browse the repository at this point in the history
  • Loading branch information
rtsonneveld committed Dec 13, 2021
1 parent 97cd552 commit c15151d
Showing 1 changed file with 1 addition and 0 deletions.
Expand Up @@ -45,6 +45,7 @@ public string SavedProgressText
get => SavedProgress==null ? string.Empty : string.Join(" ", SavedProgress.Select(b => b.ToString()));
set
{
if (value == null) return;
string[] byteStrings = value.Split(' ');
byte[] byteArray = new byte[Rayman2ProgressArrayExtra.ProgressArrayLengthBytes];

Expand Down

0 comments on commit c15151d

Please sign in to comment.