From 068253a3a299a60d78c7c1b0e760f4bbe3b75bc1 Mon Sep 17 00:00:00 2001 From: Sebastian Krzyszkowiak Date: Sat, 4 May 2019 17:48:20 +0200 Subject: [PATCH] Fix mouse focus clickthrough Mouse focus clickthrough didn't work due to compat.h header not being included in scrcpy.c. Signed-off-by: Romain Vimont --- app/src/scrcpy.c | 1 + 1 file changed, 1 insertion(+) diff --git a/app/src/scrcpy.c b/app/src/scrcpy.c index 61b3f8d9..ebcd81ba 100644 --- a/app/src/scrcpy.c +++ b/app/src/scrcpy.c @@ -9,6 +9,7 @@ #include "command.h" #include "common.h" +#include "compat.h" #include "controller.h" #include "decoder.h" #include "device.h"