Use correct return type

This commit is contained in:
Yamagi Burmeister 2014-08-03 11:34:06 +02:00
parent d8eb7037a4
commit 1859c42484

View file

@ -330,7 +330,7 @@ hintpath_findstart(edict_t *ent)
if (!ent)
{
return false;
return NULL;
}
if (ent->target) /* starting point */
@ -392,7 +392,7 @@ hintpath_other_end(edict_t *ent)
if (!ent)
{
return false;
return NULL;
}
if (ent->target) /* starting point */
@ -1732,7 +1732,7 @@ PickCoopTarget(edict_t *self)
{
if (!self)
{
return false;
return NULL;
}
/* no more than 4 players in coop, so.. */