Remove ++ from bool
This commit is contained in:
@@ -373,7 +373,7 @@ passnum()
|
|||||||
for (rp = rooms; rp < &rooms[MAXROOMS]; rp++)
|
for (rp = rooms; rp < &rooms[MAXROOMS]; rp++)
|
||||||
for (i = 0; i < rp->r_nexits; i++)
|
for (i = 0; i < rp->r_nexits; i++)
|
||||||
{
|
{
|
||||||
newpnum++;
|
newpnum ^= 1;//newpnum++;
|
||||||
numpass(rp->r_exit[i].y, rp->r_exit[i].x);
|
numpass(rp->r_exit[i].y, rp->r_exit[i].x);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -294,7 +294,7 @@ turn_see(bool turn_off)
|
|||||||
if (!can_see)
|
if (!can_see)
|
||||||
{
|
{
|
||||||
standend();
|
standend();
|
||||||
add_new++;
|
add_new ^= 1;//add_new++;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user