Relay-Version: version B 2.10 5/3/83; site utzoo.UUCP Path: utzoo!mnetor!uunet!tektronix!tekgen!tekred!joels From: joels@tekred.TEK.COM (Joel Swank) Newsgroups: comp.sources.bugs Subject: Bugfix for solx.c Message-ID: <1730@tekred.TEK.COM> Date: Fri, 23-Oct-87 17:40:17 EST Article-I.D.: tekred.1730 Posted: Fri Oct 23 17:40:17 1987 Date-Received: Sun, 25-Oct-87 18:09:48 EST Organization: Tektronix Inc., Beaverton, Or. Lines: 12 Symptom: Auto mode ocasionally dreams up an ace of hearts and duplicates a row of cards. The fix is a small one line change. Fix for solx.c In subroutine autopilot() for (i = 0; i < 7; i++) for (j = 0; j < 7; j++) for (k = 0; k < lstlen(run[i]); k++) >>old l = movecard(i + '1', k, j + '1', TRUE) || l; >>new l = movecard(i + '1', k+1, j + '1', TRUE) || l; for (i = 0; i < 7; i++)