From 9c90a53871aa9e6c121a47ddeaf5dc67b1a6d92b Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sat, 18 Nov 2017 12:15:46 +1100 Subject: [PATCH] [client] Increased spice mouse ringbuffer size to avoid input overflows Seems that some rare conditions will overflow the buffer on window entry/exit, confirmed by testing performed by Clemor. This should help with this. --- client/spice/spice.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/spice/spice.c b/client/spice/spice.c index 657f93a8..9b1d3408 100644 --- a/client/spice/spice.c +++ b/client/spice/spice.c @@ -73,7 +73,7 @@ struct SpiceKeyboard uint32_t modifiers; }; -#define SPICE_MOUSE_QUEUE_SIZE 16 +#define SPICE_MOUSE_QUEUE_SIZE 32 struct SpiceMouse {