mirror of
https://github.com/yquake2/rogue.git
synced 2025-04-19 08:41:27 +00:00
Use correct return type
This commit is contained in:
parent
d8eb7037a4
commit
1859c42484
1 changed files with 3 additions and 3 deletions
|
@ -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.. */
|
||||
|
|
Loading…
Reference in a new issue