Fixed import bug caused by issue 13

This commit is contained in:
Michael J. Seiferling
2015-12-05 17:24:50 -06:00
parent b270ffeabe
commit 80badb577a
3 changed files with 16 additions and 15 deletions
+1 -1
View File
@@ -30,7 +30,7 @@
For Each de As DictionaryEntry In ImportData
oApp = DirectCast(de.Value, clsGame)
oData = New KeyValuePair(Of String, String)(oApp.ProcessName, oApp.Name & " (" & oApp.TrueProcess & ")")
oData = New KeyValuePair(Of String, String)(oApp.CompoundKey, oApp.Name & " (" & oApp.TrueProcess & ")")
lstGames.Items.Add(oData)
Next
End Sub