We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 775a954 commit 4a11350Copy full SHA for 4a11350
b2sbackglassdesigner/b2sbackglassdesigner/classes/CreateCode/Coding.vb
@@ -223,8 +223,8 @@ Public Class Coding
223
For Each reeltype As String In Backglass.currentData.ReelType.Split(",")
224
reeltype = reeltype.Trim()
225
Dim exportReel As Boolean = False
226
- For Each score As ReelAndLED.ScoreInfo In .Scores
227
- If score.ReelType = reeltype Then
+ For Each score As KeyValuePair(Of Integer, ReelAndLED.ScoreInfo) In savescores
+ If score.Value.ReelType = reeltype Then
228
exportReel = True
229
End If
230
Next
0 commit comments