mirror of
https://github.com/ZDoom/gzdoom-gles.git
synced 2024-11-11 07:12:16 +00:00
- Remove an int->bool conversion warning.
SVN r3338 (trunk)
This commit is contained in:
parent
a408a913bc
commit
1bdbfb360e
1 changed files with 1 additions and 1 deletions
|
@ -236,7 +236,7 @@ bool P_ActivateLine (line_t *line, AActor *mo, int side, int activationType)
|
||||||
{
|
{
|
||||||
return false;
|
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;
|
if (line->locknumber > 0 && !P_CheckKeys (mo, line->locknumber, remote)) return false;
|
||||||
lineActivation = line->activation;
|
lineActivation = line->activation;
|
||||||
repeat = line->flags & ML_REPEAT_SPECIAL;
|
repeat = line->flags & ML_REPEAT_SPECIAL;
|
||||||
|
|
Loading…
Reference in a new issue