From 42ef9964defbf8aac64326bee7a6aae9e4860830 Mon Sep 17 00:00:00 2001 From: Geoffrey McRae Date: Sun, 1 Nov 2020 04:34:26 +1100 Subject: [PATCH] [host] enlarge the cursor buffer size for large cursor shapes --- host/src/app.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/host/src/app.c b/host/src/app.c index a8551f0b..b5891983 100644 --- a/host/src/app.c +++ b/host/src/app.c @@ -58,7 +58,7 @@ static const struct LGMPQueueConfig POINTER_QUEUE_CONFIG = .subTimeout = 1000 }; -#define MAX_POINTER_SIZE (sizeof(KVMFRCursor) + (128 * 128 * 4)) +#define MAX_POINTER_SIZE (sizeof(KVMFRCursor) + (512 * 512 * 4)) enum AppState {