Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fix array reference
  • Loading branch information
rcmaehl committed Jun 30, 2021
1 parent 58925ec commit 90cda29
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions WhyNotWin11.au3
Original file line number Diff line number Diff line change
Expand Up @@ -179,8 +179,8 @@ Func ChecksOnly()

WEnd

For $iLoop = 0 To 11 Step 1
If $aResults[$iLoop] = False Then Exit 0
For $iLoop = 0 To 10 Step 1
If $aResults[$iLoop][0] = False Then Exit 0
Next

If Not $aOutput[0] = "" Then ParseResults($aResults)
Expand Down

0 comments on commit 90cda29

Please sign in to comment.