From 84f9c14d5a7054a1737d4edaa3df7e9b23a29124 Mon Sep 17 00:00:00 2001 From: Bryan Roe Date: Tue, 22 Jan 2019 16:28:59 -0800 Subject: [PATCH] Fixed bug, where if multiple KVM sessions are connected, only the first one had the resolution sent... --- meshcore/KVM/Linux/linux_kvm.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/meshcore/KVM/Linux/linux_kvm.c b/meshcore/KVM/Linux/linux_kvm.c index 622e4a2..527b476 100644 --- a/meshcore/KVM/Linux/linux_kvm.c +++ b/meshcore/KVM/Linux/linux_kvm.c @@ -438,6 +438,8 @@ int kvm_server_inputdata(char* block, int blocklen) } case MNG_KVM_REFRESH: // Refresh { + kvm_send_resolution(); + int row, col; if (size != 4) break; if (g_tileInfo == NULL) {