From 2e1541485b4b5b4cca880fc1e549a17e57000e86 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Thu, 25 May 2023 13:26:51 -0700 Subject: [PATCH] Removed pointless else. --- src/dos/dosinput.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/dos/dosinput.c b/src/dos/dosinput.c index c0148bb..972190b 100644 --- a/src/dos/dosinput.c +++ b/src/dos/dosinput.c @@ -201,9 +201,8 @@ static bool out_of_time(void) now += 24L * 3600 * 10; return now >= limit; - } else - return FALSE; - + } + return FALSE; } /* out_of_time */ -- 2.34.1