File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change 11Imports System.IO
2+ Imports System.Globalization
23Imports System.Net
34Imports System.Text
45Imports System.Text.RegularExpressions
@@ -79,7 +80,8 @@ Public Class WikiHandler
7980 WikiPopup.GamesTable.Controls.Clear()
8081 WikiPopup.GamesTable.RowCount = 0
8182
82-
83+ Dim provider As CultureInfo
84+ provider = New CultureInfo( "en-US" )
8385
8486 Dim GName As New Label
8587 GName.Text = "Game"
@@ -120,7 +122,7 @@ Public Class WikiHandler
120122
121123 FillTable(n)
122124
123- ratioavg += Decimal .Parse(InputFromGitHub(n).Split( "|" )( 6 ))
125+ ratioavg += Decimal .Parse(InputFromGitHub(n).Split( "|" )( 6 ), provider )
124126 If InputFromGitHub(n).Split( "|" )( 7 ).Contains( "*" ) Then
125127 Compact.sb_lblGameIssues.Visible = True
126128 Compact.sb_lblGameIssues.Text = "! Game has issues"
You can’t perform that action at this time.
0 commit comments