Xref: utzoo comp.sources.bugs:789 comp.sources.games.bugs:88 Path: utzoo!mnetor!uunet!husc6!mit-eddie!uw-beaver!tektronix!tekgen!tekred!billr From: billr@tekred.TEK.COM (Bill Randle) Newsgroups: comp.sources.bugs,comp.sources.games.bugs Subject: Patch for recently posted Knights Tour game Message-ID: <2198@tekred.TEK.COM> Date: 19 Feb 88 16:26:05 GMT Reply-To: billr@tekred.TEK.COM (Bill Randle) Organization: Tektronix, Inc., Redmond, OR Lines: 20 Keywords: games knight Summary: This is an official patch, please apply it I received an updated source file from the author the day after I posted the original. Here is the diff (a simple one line addition). -Bill Randle Moderator, comp.sources.games Tektronix, Inc. games-request@tekred.TEK.COM ------------------------------------------------------ *** knight.c.orig Thu Feb 18 17:39:59 1988 --- knight.c Fri Feb 19 08:22:15 1988 *************** *** 133,138 **** --- 133,139 ---- if (row == 'R') { rw = lrand48() % 8; col = lrand48() % 8; + j = 8* rw + col; row = rw + 'A'; column = col + '1'; }