mirror of
https://github.com/Ellpeck/Illumilib.git
synced 2024-12-26 01:29:24 +01:00
fixed a rare exception when razer lighting disposes
This commit is contained in:
parent
8f742b1eeb
commit
942dc47e94
1 changed files with 1 additions and 1 deletions
|
@ -22,7 +22,7 @@ namespace Illumilib.System {
|
||||||
|
|
||||||
public override void Dispose() {
|
public override void Dispose() {
|
||||||
base.Dispose();
|
base.Dispose();
|
||||||
this.chroma.UninitializeAsync();
|
this.chroma?.UninitializeAsync();
|
||||||
this.effectOutdated = true;
|
this.effectOutdated = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue