Unix path fixes and search lock out

This commit is contained in:
Michael J. Seiferling
2016-03-03 15:22:47 -06:00
parent feb8a9d0b2
commit 0cafd00bf3
5 changed files with 55 additions and 30 deletions
+5
View File
@@ -98,6 +98,11 @@ Public Class mgrCommon
Dim sExemptList As String() = {"dosbox", "scummvm"}
Dim bFound As Boolean = False
'frmFileFolderSearch is currently very buggy in Mono, this will disable all searches on Unix
If IsUnix() Then
Return True
End If
For Each s As String In sExemptList
If oGame.ProcessName.ToLower.Contains(s) Then bFound = True
Next