Skip to content

Commit 4a11350

Browse files
committed
Fix reel images not being exported if the reel is part of the DMD
1 parent 775a954 commit 4a11350

File tree

1 file changed

+2
-2
lines changed
  • b2sbackglassdesigner/b2sbackglassdesigner/classes/CreateCode

1 file changed

+2
-2
lines changed

b2sbackglassdesigner/b2sbackglassdesigner/classes/CreateCode/Coding.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ Public Class Coding
223223
For Each reeltype As String In Backglass.currentData.ReelType.Split(",")
224224
reeltype = reeltype.Trim()
225225
Dim exportReel As Boolean = False
226-
For Each score As ReelAndLED.ScoreInfo In .Scores
227-
If score.ReelType = reeltype Then
226+
For Each score As KeyValuePair(Of Integer, ReelAndLED.ScoreInfo) In savescores
227+
If score.Value.ReelType = reeltype Then
228228
exportReel = True
229229
End If
230230
Next

0 commit comments

Comments
 (0)