mirror of
https://github.com/nzp-team/quakespasm.git
synced 2024-11-10 06:32:03 +00:00
Restore PF_etos in Quakespasm
This commit is contained in:
parent
9f6cae98f8
commit
396898a992
1 changed files with 7 additions and 1 deletions
|
@ -1219,6 +1219,12 @@ static void PF_vtos (void)
|
|||
G_INT(OFS_RETURN) = PR_SetEngineString(s);
|
||||
}
|
||||
|
||||
void PF_etos (void)
|
||||
{
|
||||
sprintf (pr_string_temp, "entity %i", G_EDICTNUM(OFS_PARM0));
|
||||
G_INT(OFS_RETURN) = pr_string_temp - pr_strings;
|
||||
}
|
||||
|
||||
static void PF_Spawn (void)
|
||||
{
|
||||
edict_t *ed;
|
||||
|
@ -3289,7 +3295,7 @@ static builtin_t pr_builtin[] =
|
|||
PF_Fixme, // #62
|
||||
PF_Fixme, // #63
|
||||
PF_Fixme, // #64
|
||||
PF_Fixme, // #65
|
||||
PF_etos, // #65
|
||||
PF_Fixme, // #66
|
||||
SV_MoveToGoal, // #67
|
||||
PF_precache_file, // #68
|
||||
|
|
Loading…
Reference in a new issue