mirror of
https://github.com/Ryujinx/Opentk.git
synced 2024-12-23 15:35:34 +00:00
Fix NullPointerException on Windows 8.
This commit is contained in:
parent
d1713ff47a
commit
af74d97903
|
@ -108,7 +108,7 @@ namespace OpenTK.Platform.Windows
|
|||
string deviceClassGUID = (string)regkey.GetValue("ClassGUID"); // for windows 8 support via OpenTK issue 3198
|
||||
|
||||
// making a guess at backwards compatability. Not sure what older windows returns in these cases...
|
||||
if(deviceClass != null || deviceClass.Equals(string.Empty)){
|
||||
if(deviceClass == null || deviceClass.Equals(string.Empty)){
|
||||
RegistryKey classGUIDKey = Registry.LocalMachine.OpenSubKey(@"SYSTEM\CurrentControlSet\Control\Class\" + deviceClassGUID);
|
||||
deviceClass = classGUIDKey != null ? (string) classGUIDKey.GetValue("Class") : string.Empty;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue