Less strict check for syncplay.lua for OSX

This commit is contained in:
Etoh 2013-10-07 21:41:25 +01:00
parent a43ba210a4
commit a73520f54a

View File

@ -112,7 +112,7 @@ function mightbewindows()
-- Used to detect whether the Operating System might be Windows.
sysos = os.getenv("OS")
if sysos == nil then
return true
return false
elseif sysos == "" or string.match(sysos:lower(), "windows") then
return true
else