- Added ACS function CheckFont.

SVN r4335 (trunk)
This commit is contained in:
Randy Heit 2013-06-06 20:48:57 +00:00
parent bac66d5b0e
commit 902f6647b6
1 changed files with 5 additions and 0 deletions

View File

@ -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;
}