mirror of
https://github.com/gnif/LookingGlass.git
synced 2024-11-10 11:17:54 +00:00
[c-host] nvfbc: free event on deinit
This commit is contained in:
parent
b5d91ccc21
commit
7de030bb69
2 changed files with 8 additions and 1 deletions
2
VERSION
2
VERSION
|
@ -1 +1 @@
|
|||
B1-81-ge554635e48+1
|
||||
B1-83-gb5d91ccc21+1
|
|
@ -213,6 +213,13 @@ static void nvfbc_stop()
|
|||
static bool nvfbc_deinit()
|
||||
{
|
||||
mouseHook_remove();
|
||||
|
||||
if (this->cursorEvents[0])
|
||||
{
|
||||
lgFreeEvent(this->cursorEvents[0]);
|
||||
this->cursorEvents[0] = NULL;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue