From: David Griffith Date: Thu, 25 May 2023 20:26:51 +0000 (-0700) Subject: Removed pointless else. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=2e1541485b4b5b4cca880fc1e549a17e57000e86;p=liskon_frotz.git Removed pointless else. --- 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 */