Added Wine detection support

This commit is contained in:
Michael J. Seiferling
2016-03-03 13:05:50 -06:00
parent d46360b244
commit feb8a9d0b2
4 changed files with 67 additions and 21 deletions
+1 -1
View File
@@ -942,7 +942,7 @@ Public Class frmGameManager
oApp.ID = txtID.Text
End If
oApp.Name = mgrPath.ValidateForFileSystem(txtName.Text)
If Path.HasExtension(txtProcess.Text) And Not mgrCommon.IsUnix Then
If Path.HasExtension(txtProcess.Text) Then
If txtProcess.Text.ToLower.EndsWith(".exe") Then
oApp.ProcessName = Path.GetFileNameWithoutExtension(txtProcess.Text)
Else