]> git.cameronkatri.com Git - bsdgames-darwin.git/commitdiff
The Double-Semi-Colon Police.
authorsimonb <simonb@NetBSD.org>
Mon, 20 Jan 2003 05:29:53 +0000 (05:29 +0000)
committersimonb <simonb@NetBSD.org>
Mon, 20 Jan 2003 05:29:53 +0000 (05:29 +0000)
phantasia/misc.c
rogue/level.c

index 5be73cc5bfc9b13cf45bbc1bc7b2d9f8b4f571ee..edf64cf7722b29bed1cf341734f94b095259367b 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: misc.c,v 1.7 2000/04/27 00:30:53 jdc Exp $     */
+/*     $NetBSD: misc.c,v 1.8 2003/01/20 05:29:55 simonb Exp $  */
 
 /*
  * misc.c  Phantasia miscellaneous support routines
@@ -790,7 +790,7 @@ adjuststats()
 
        /* calculate effective quickness */
        dtemp = ((Player.p_gold + Player.p_gems / 2.0) - 1000.0) / Statptr->c_goldtote
-           - Player.p_level;;
+           - Player.p_level;
        dtemp = MAX(0.0, dtemp);/* gold slows player down */
        Player.p_speed = Player.p_quickness + Player.p_quksilver - dtemp;
 
index f366f570e7c5c23d0713c4cd79af508ff1cfeb1e..b57e1f21878dc4aa2cc0786b98623cc901b2d6a4 100644 (file)
@@ -1,4 +1,4 @@
-/*     $NetBSD: level.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $        */
+/*     $NetBSD: level.c,v 1.6 2003/01/20 05:29:55 simonb Exp $ */
 
 /*
  * Copyright (c) 1988, 1993
@@ -41,7 +41,7 @@
 #if 0
 static char sccsid[] = "@(#)level.c    8.1 (Berkeley) 5/31/93";
 #else
-__RCSID("$NetBSD: level.c,v 1.5 1998/11/10 13:01:32 hubertf Exp $");
+__RCSID("$NetBSD: level.c,v 1.6 2003/01/20 05:29:55 simonb Exp $");
 #endif
 #endif /* not lint */
 
@@ -261,7 +261,7 @@ make_room(rn, r1, r2, r3)
        case BIG_ROOM:
                top_row = get_rand(MIN_ROW, MIN_ROW+5);
                bottom_row = get_rand(DROWS-7, DROWS-2);
-               left_col = get_rand(0, 10);;
+               left_col = get_rand(0, 10);
                right_col = get_rand(DCOLS-11, DCOLS-1);
                rn = 0;
                goto B;