1
0
mirror of https://github.com/Ylianst/MeshAgent synced 2025-12-24 04:04:31 +00:00

Fixed typo/bug on 32 bit Mouse Capture

This commit is contained in:
Bryan Roe
2019-09-20 17:36:57 -07:00
parent ee749827f0
commit bec24c898a

View File

@@ -716,7 +716,7 @@ void* kvm_server_mainloop(void* parm)
// 32bit
if (((uint32_t*)((char*)&XE + 32))[0] != 0)
{
name = x11_exports->XGetAtomName(cursordisplay, ((Atom*)((char*)&XE + 64))[0]);
name = x11_exports->XGetAtomName(cursordisplay, ((Atom*)((char*)&XE + 32))[0]);
}
}