Skip to content

Commit e77e0f4

Browse files
committed
v1.3.0
Changes: * No longer required to choose SteamApps or UserData folders. * New games (Games other than CS:GO have not been vigorously tested. They may not work.) * Fixed "Cannot access the file" error. * Fixed "Unknown command 'voice_fadeouttime'" error.
1 parent ad85c22 commit e77e0f4

2 files changed

Lines changed: 6 additions & 3 deletions

File tree

SLAM/Form1.vb

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Public Class Form1
1414
Dim running As Boolean = False
1515

1616
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
17-
'DisableInterface()
1817
RefreshPlayKey()
1918

2019
If My.Settings.UpdateCheck Then
@@ -106,7 +105,10 @@ Public Class Form1
106105

107106
If GameSelector.Items.Contains(My.Settings.LastGame) Then
108107
GameSelector.Text = GameSelector.Items(GameSelector.Items.IndexOf(My.Settings.LastGame)).ToString
108+
Else
109+
GameSelector.Text = GameSelector.Items(0).ToString
109110
End If
111+
110112
ReloadTracks(GetCurrentGame)
111113
RefreshTrackList()
112114

@@ -463,6 +465,7 @@ Public Class Form1
463465
End If
464466
End If
465467

468+
Thread.Sleep(Game.PollInterval)
466469
Loop
467470
Catch ex As Exception
468471
LogError(ex)

SLAM/My Project/AssemblyInfo.vb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,5 +31,5 @@ Imports System.Runtime.InteropServices
3131
' by using the '*' as shown below:
3232
' <Assembly: AssemblyVersion("1.0.*")>
3333

34-
<Assembly: AssemblyVersion("1.2.2.0")>
35-
<Assembly: AssemblyFileVersion("1.2.2.0")>
34+
<Assembly: AssemblyVersion("1.3.0.0")>
35+
<Assembly: AssemblyFileVersion("1.3.0.0")>

0 commit comments

Comments
 (0)