1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-01-23 14:54:30 +01:00

Upgrade platform_get_font_path()

This commit is contained in:
Gymnasiast
2022-01-10 13:41:12 +01:00
parent 310ad1e400
commit f917fffe34
11 changed files with 117 additions and 132 deletions

View File

@@ -75,6 +75,14 @@ namespace Platform
{
return "";
}
# ifndef NO_TTF
std::string GetFontPath(const TTFFontDescriptor& font)
{
STUB();
return "";
}
# endif
} // namespace Platform
#endif