Print out exception from opengl version check failure
This commit is contained in:
parent
867b2384fd
commit
9f3630cbce
|
@ -32,8 +32,9 @@ namespace BizHawk.Bizware.Graphics
|
|||
return PackGLVersion(major, minor) >= PackGLVersion(requestedMajor, requestedMinor);
|
||||
}
|
||||
}
|
||||
catch
|
||||
catch (Exception ex)
|
||||
{
|
||||
Console.Error.WriteLine($"OpenGL check for version {requestedMajor}.{requestedMinor} failed, underlying exception: {ex}");
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue