From 0e1982742e811243ff7887fbc8e1963f31138608 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Mon, 7 Feb 2005 15:48:12 +0000 Subject: [PATCH] Hide more origin differences. --- ai.c | 6 +++--- battle.c | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/ai.c b/ai.c index f1eca73..c141bbe 100644 --- a/ai.c +++ b/ai.c @@ -14,7 +14,7 @@ static int tryexit(int lookx, int looky, int ienm, int loccom, int irun) if (irun == 0) { /* avoid intruding on another commander's territory */ if (ienm == IHC) { - for (l = 1; l <= game.state.remcom; l++) + for_commanders(l) if (game.state.cx[l]==iqx && game.state.cy[l]==iqy) return 0; /* refuse to leave if currently attacking starbase */ if (batx==quadx && baty==quady) return 0; @@ -54,7 +54,7 @@ static int tryexit(int lookx, int looky, int ienm, int loccom, int irun) game.state.isy=iqy; } else { - for (l=1; l<=game.state.remcom; l++) { + for_commanders(l) { if (game.state.cx[l]==quadx && game.state.cy[l]==quady) { game.state.cx[l]=iqx; game.state.cy[l]=iqy; @@ -436,7 +436,7 @@ void scom(int *ipage) continue; /* if there is a commander, an no other base is appropriate, we will take the one with the commander */ - for (j = 1; j <= game.state.remcom; j++) { + for_commanders (j) { if (ibqx==game.state.cx[j] && ibqy==game.state.cy[j] && ifindit!= 2) { ifindit = 2; iwhichb = i; diff --git a/battle.c b/battle.c index ef45ca2..5490399 100644 --- a/battle.c +++ b/battle.c @@ -633,7 +633,7 @@ void deadkl(int ix, int iy, int type, int ixx, int iyy) switch (type) { case IHC: comhere = 0; - for (i=1; i<=game.state.remcom; i++) + for_commanders (i) if (game.state.cx[i]==quadx && game.state.cy[i]==quady) break; game.state.cx[i] = game.state.cx[game.state.remcom]; game.state.cy[i] = game.state.cy[game.state.remcom]; -- 2.31.1