mirror of
https://github.com/ZDoom/qzdoom-gpl.git
synced 2025-01-31 10:40:33 +00:00
- Added ACS function CheckFont.
SVN r4335 (trunk)
This commit is contained in:
parent
bac66d5b0e
commit
902f6647b6
1 changed files with 5 additions and 0 deletions
|
@ -4198,6 +4198,7 @@ enum EACSFunctions
|
||||||
ACSF_SoundVolume,
|
ACSF_SoundVolume,
|
||||||
ACSF_PlayActorSound,
|
ACSF_PlayActorSound,
|
||||||
ACSF_SpawnDecal,
|
ACSF_SpawnDecal,
|
||||||
|
ACSF_CheckFont,
|
||||||
|
|
||||||
// ZDaemon
|
// ZDaemon
|
||||||
ACSF_GetTeamScore = 19620, // (int team)
|
ACSF_GetTeamScore = 19620, // (int team)
|
||||||
|
@ -5193,6 +5194,10 @@ doplaysound: if (funcIndex == ACSF_PlayActorSound)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case ACSF_CheckFont:
|
||||||
|
// bool CheckFont(str fontname)
|
||||||
|
return V_GetFont(FBehavior::StaticLookupString(args[0])) != NULL;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue