X-Git-Url: https://jxself.org/git/?p=super-star-trek.git;a=blobdiff_plain;f=setup.c;fp=setup.c;h=b9c4842578cbfc08394c258360f15b26e397a234;hp=30666512adb62b65585f75c57c8add5d226a8d47;hb=5db6160de8bad4de189d3b54dd54011260c7a34f;hpb=64f8a6155517ae8b894617ebd93e5eb48cdf4c0e diff --git a/setup.c b/setup.c index 3066651..b9c4842 100644 --- a/setup.c +++ b/setup.c @@ -179,7 +179,8 @@ void abandn(void) iscraft=0; /* Gallileo disappears */ /* Resupply ship */ condit=IHDOCKED; - for (l = 1; l <= NDEVICES; l++) game.damage[l] = 0.0; + for (l = 0; l < NDEVICES; l++) + game.damage[l] = 0.0; game.damage[DSHUTTL] = -1; energy = inenrg = 3000.0; shield = inshld = 1250.0; @@ -214,7 +215,8 @@ void setup(int needprompt) nprobes = (int)(3.0*Rand() + 2.0); /* Give them 2-4 of these wonders */ warpfac = 5.0; wfacsq = warpfac * warpfac; - for (i=0; i <= NDEVICES; i++) game.damage[i] = 0.0; + for (i=0; i < NDEVICES; i++) + game.damage[i] = 0.0; // Set up assorted game parameters batx = baty = 0; game.state.date = indate = 100.0*(int)(31.0*Rand()+20.0);