]> git.pond.sub.org Git - empserver/commitdiff
The previous revision is wrong, back it out.
authorMarkus Armbruster <armbru@pond.sub.org>
Sun, 26 Mar 2006 17:36:27 +0000 (17:36 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Sun, 26 Mar 2006 17:36:27 +0000 (17:36 +0000)
src/lib/commands/mfir.c
src/lib/commands/orde.c

index fce169694282d38fd655acd5fbb5e7dd1cefb3e4..9ab80192324d1f842004b459390dc32d04565ec1 100644 (file)
@@ -812,7 +812,7 @@ quiet_bigdef(int attacker, struct emp_qelem *list, natid own, natid aown,
            if (!line_of_sight(NULL, ship.shp_x, ship.shp_y, ax, ay))
                continue;
 
-           *nfiring++;
+           (*nfiring)++;
            fp = malloc(sizeof(struct flist));
            memset(fp, 0, sizeof(struct flist));
            fp->type = targ_ship;
@@ -843,7 +843,7 @@ quiet_bigdef(int attacker, struct emp_qelem *list, natid own, natid aown,
            nshot = MIN(nshot, ship.shp_glim);
            if (nshot == 0)
                continue;
-           *nfiring++;
+           (*nfiring)++;
            fp = malloc(sizeof(struct flist));
            memset(fp, 0, sizeof(struct flist));
            fp->type = targ_ship;
@@ -896,7 +896,7 @@ quiet_bigdef(int attacker, struct emp_qelem *list, natid own, natid aown,
        dam2 = (int)landunitgun(land.lnd_effic, land.lnd_dam, gun,
                                land.lnd_ammo, shell);
 
-       *nfiring++;
+       (*nfiring)++;
        fp = malloc(sizeof(struct flist));
        memset(fp, 0, sizeof(struct flist));
        fp->type = targ_unit;
@@ -949,7 +949,7 @@ quiet_bigdef(int attacker, struct emp_qelem *list, natid own, natid aown,
                                       I_SHELL, 1);
            if (gun == 0 || firing.sct_item[I_MILIT] < 5 || shell == 0)
                continue;
-           *nfiring++;
+           (*nfiring)++;
            fp = malloc(sizeof(struct flist));
            memset(fp, 0, sizeof(struct flist));
            fp->x = firing.sct_x;
index d1647badbe7859cb9974381f7f1a9676de960056..3cd98a5d1d77c8ccdca6bccb28d960be9ab995da 100644 (file)
@@ -340,7 +340,7 @@ eta_calc(struct shpstr *sp, s_char *path, int *len, int *nupdates)
            i--;
        } else {
            mobil += (ship_mob_scale * (float)etu_per_update);
-           *nupdates++;
+           (*nupdates)++;
        }
     }
 }