mirror of
https://github.com/dashr9230/SA-MP.git
synced 2025-09-20 12:46:07 +08:00
[saco] Implement/match GetFontFace()
This commit is contained in:
@ -551,3 +551,12 @@ int GetFontWeight()
|
|||||||
return fontweight != 1 ? FW_BOLD : FW_NORMAL;
|
return fontweight != 1 ? FW_BOLD : FW_NORMAL;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
char *GetFontFace()
|
||||||
|
{
|
||||||
|
if(pConfig && pConfig->GetStringVariable("fontface"))
|
||||||
|
{
|
||||||
|
return pConfig->GetStringVariable("fontface");
|
||||||
|
}
|
||||||
|
return "Arial";
|
||||||
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user