From 6fa80112542a38f61b81b2403613d4292cf47704 Mon Sep 17 00:00:00 2001 From: Twinaphex Date: Fri, 9 Sep 2016 08:10:55 +0200 Subject: [PATCH] Fix warnings --- src/input.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/input.c b/src/input.c index 893ba3f..b18d74f 100644 --- a/src/input.c +++ b/src/input.c @@ -174,7 +174,7 @@ static void CheckSLHook(void) { InputScanlineHook = 0; - if (JPorts[0] && JPorts[0]->SLHook || JPorts[1] && JPorts[1]->SLHook) + if ((JPorts[0] && JPorts[0]->SLHook) || (JPorts[1] && JPorts[1]->SLHook)) InputScanlineHook = SLHLHook; if (FCExp && FCExp->SLHook)