diff --git a/src/p_acs.cpp b/src/p_acs.cpp index ab704e9df9..cd55caefb3 100644 --- a/src/p_acs.cpp +++ b/src/p_acs.cpp @@ -4198,6 +4198,7 @@ enum EACSFunctions ACSF_SoundVolume, ACSF_PlayActorSound, ACSF_SpawnDecal, + ACSF_CheckFont, // ZDaemon ACSF_GetTeamScore = 19620, // (int team) @@ -5193,6 +5194,10 @@ doplaysound: if (funcIndex == ACSF_PlayActorSound) } break; + case ACSF_CheckFont: + // bool CheckFont(str fontname) + return V_GetFont(FBehavior::StaticLookupString(args[0])) != NULL; + default: break; }