1
0
mirror of https://github.com/DarthAffe/RGB.NET.git synced 2025-12-13 01:58:30 +00:00

Workarounded some unload-issues (still there but late enough to not cause too much issues)

This commit is contained in:
Darth Affe 2020-03-03 17:17:42 +01:00
parent bc9ff70975
commit 276c1687a3
2 changed files with 6 additions and 4 deletions

View File

@ -189,8 +189,9 @@ namespace RGB.NET.Devices.CoolerMaster
catch {/* shit happens */}
}
try { _CoolerMasterSDK.UnloadCMSDK(); }
catch { /* at least we tried */ }
// DarthAffe 03.03.2020: Should be done but isn't possible due to an weird winodws-hook inside the sdk which corrupts the stack when unloading the dll
//try { _CoolerMasterSDK.UnloadCMSDK(); }
//catch { /* at least we tried */ }
}
#endregion

View File

@ -229,8 +229,9 @@ namespace RGB.NET.Devices.Razer
TryUnInit();
try { _RazerSDK.UnloadRazerSDK(); }
catch { /* at least we tried */ }
// DarthAffe 03.03.2020: Fails with an access-violation - verify if an unload is already triggered by uninit
//try { _RazerSDK.UnloadRazerSDK(); }
//catch { /* at least we tried */ }
}
#endregion