[host] nvfbc: remove useless update of member

This commit is contained in:
Geoffrey McRae 2023-07-25 22:10:25 +10:00
parent 2e515657dd
commit 128a8938c6

View File

@ -860,9 +860,8 @@ static int pointerThread(void * unused)
this->mouseHotY = pointer.hy;
pointer.positionUpdate = true;
pointer.visible = this->mouseVisible;
pointer.x = this->mouseX - pointer.hx;
pointer.y = this->mouseY - pointer.hy;
pointer.x = this->mouseX - pointer.hx;
pointer.y = this->mouseY - pointer.hy;
this->postPointerBufferFn(pointer);
}