From bec24c898aa56f328a580d7e0d3448fb1d30ed61 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Fri, 20 Sep 2019 17:36:57 -0700 Subject: [PATCH] Fixed typo/bug on 32 bit Mouse Capture --- meshcore/KVM/Linux/linux_kvm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/meshcore/KVM/Linux/linux_kvm.c b/meshcore/KVM/Linux/linux_kvm.c index f991ab2..a74a122 100644 --- a/meshcore/KVM/Linux/linux_kvm.c +++ b/meshcore/KVM/Linux/linux_kvm.c @@ -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]); } }