Quiet two more warnings from GCC

This commit is contained in:
Randy Heit 2016-04-23 21:00:35 -05:00
commit 96a0bee651
2 changed files with 2 additions and 2 deletions

View file

@ -2185,7 +2185,7 @@ void FParser::SF_SetLineMonsterBlocking(void)
{
if (CheckArgs(2))
{
int blocking = intvalue(t_argv[1]) ? ML_BLOCKMONSTERS : 0;
int blocking = intvalue(t_argv[1]) ? (int)ML_BLOCKMONSTERS : 0;
int tag=intvalue(t_argv[0]);
FLineIdIterator itr(tag);