- Remove an int->bool conversion warning.

SVN r3338 (trunk)
This commit is contained in:
Randy Heit 2012-01-21 23:51:24 +00:00
parent a408a913bc
commit 1bdbfb360e
1 changed files with 1 additions and 1 deletions

View File

@ -236,7 +236,7 @@ bool P_ActivateLine (line_t *line, AActor *mo, int side, int activationType)
{
return false;
}
int remote = (line->special != 7 && line->special != 8 && (line->special < 11 || line->special > 14));
bool remote = (line->special != 7 && line->special != 8 && (line->special < 11 || line->special > 14));
if (line->locknumber > 0 && !P_CheckKeys (mo, line->locknumber, remote)) return false;
lineActivation = line->activation;
repeat = line->flags & ML_REPEAT_SPECIAL;