From owner-freebsd-hackers Wed Sep 24 14:51:11 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.7/8.8.7) id OAA00496 for hackers-outgoing; Wed, 24 Sep 1997 14:51:11 -0700 (PDT) Received: from mailout02.btx.dtag.de (mailout02.btx.dtag.de [194.25.2.150]) by hub.freebsd.org (8.8.7/8.8.7) with SMTP id OAA00478 for ; Wed, 24 Sep 1997 14:51:04 -0700 (PDT) Received: from fwd04.btx.dtag.de [194.25.2.164] by mailout02.btx.dtag.de with smtp id 0xDyYh-00014R-00; Wed, 24 Sep 1997 23:01:23 +0200 Received: (053235370-0001(btxid)@[193.159.66.170]) by fwd04.btx.dtag.de with (S3.1.29.1) id ; Wed, 24 Sep 97 22:27 MET DST Message-Id: Date: Wed, 24 Sep 97 22:27 MET DST To: hackers@freebsd.org Subject: Bugfix games/atc X-Mailer: T-Online eMail 2.0 MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 8BIT X-Sender: 053235370-0001@t-online.de (Klaus-Juergen Wolf) From: Yanestra@t-online.de (Klaus-J. Wolf) Sender: owner-freebsd-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk Dear people, a small bugfix for games/atc. BUG DESCRIPTION: When a plane is heading to 315 degrees and you turn 'r' right, it will start to circle. When a plane is heading to 270 degrees and you turn 'R' right, it will start to circle. BUGFIX: File: /usr/src/games/atc/input.c --cut-here-- 413c413 < if (p.new_dir > MAXDIR) --- > if (p.new_dir >= MAXDIR) 431c431 < if (p.new_dir > MAXDIR) --- > if (p.new_dir >= MAXDIR) --cut-here-- Thanx a lot. Ciao jay