Implemented RunningOnLinux.

This commit is contained in:
the_fiddler 2008-11-18 12:41:12 +00:00
parent 57ff9428d6
commit 14c9d83b9a

View file

@ -39,10 +39,13 @@ namespace OpenTK
switch (DetectUnixKernel())
{
case "Unix":
case "Linux":
runningOnX11 = true;
break;
case "Linux":
runningOnLinux = runningOnX11 = true;
break;
case "Darwin":
runningOnOSX = true;
break;