mirror of
https://github.com/ZDoom/gzdoom.git
synced 2024-11-11 15:21:51 +00:00
- fixed: SingleActorFromTid wasn't declared in thingdef_codeptr.cpp
This commit is contained in:
parent
57150c8718
commit
58870d4871
2 changed files with 2 additions and 1 deletions
|
@ -3595,7 +3595,7 @@ int DoGetMasterTID (AActor *self)
|
|||
else return 0;
|
||||
}
|
||||
|
||||
static AActor *SingleActorFromTID (int tid, AActor *defactor)
|
||||
AActor *SingleActorFromTID (int tid, AActor *defactor)
|
||||
{
|
||||
if (tid == 0)
|
||||
{
|
||||
|
|
|
@ -73,6 +73,7 @@
|
|||
#include "p_setup.h"
|
||||
#include "gstrings.h"
|
||||
|
||||
AActor *SingleActorFromTID (int tid, AActor *defactor);
|
||||
|
||||
static FRandom pr_camissile ("CustomActorfire");
|
||||
static FRandom pr_camelee ("CustomMelee");
|
||||
|
|
Loading…
Reference in a new issue