Skip to content

Commit

Permalink
Corrected the opperator for when checking if the amiibo levels are un…
Browse files Browse the repository at this point in the history
…locked or not
  • Loading branch information
Rohul1997 committed Aug 7, 2018
1 parent cdb5994 commit 8189bcf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Picross R2 Amiibo Unlocker/Main_form.cs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ private void Read_save(object sender, EventArgs e)

for (int i = 0; i < 9; i++)
{
if (savedata[baseOffset] >= 0x09)
if (savedata[baseOffset] < 0x09)
{
Amiibo_status_label.Text = "All Amiibo Levels Not Unlocked";
break;
Expand Down

0 comments on commit 8189bcf

Please sign in to comment.