mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-05 08:11:39 +00:00
GRAPHICS: MACGUI: FreeType required for Win95 fonts
Fixes compilation on platforms without FreeType
This commit is contained in:
parent
29e07a483e
commit
41798fca5d
@ -585,6 +585,7 @@ void MacMenu::createSubMenuFromString(int id, const char *str, int commandId) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const Font *MacMenu::getMenuFont(int slant) {
|
const Font *MacMenu::getMenuFont(int slant) {
|
||||||
|
#ifdef USE_FREETYPE2
|
||||||
if (_wm->_mode & kWMModeWin95) {
|
if (_wm->_mode & kWMModeWin95) {
|
||||||
if (!_loadedFont) {
|
if (!_loadedFont) {
|
||||||
_loadedFont = Graphics::loadTTFFontFromArchive("ms_sans_serif.ttf", 16);
|
_loadedFont = Graphics::loadTTFFontFromArchive("ms_sans_serif.ttf", 16);
|
||||||
@ -597,6 +598,7 @@ const Font *MacMenu::getMenuFont(int slant) {
|
|||||||
|
|
||||||
// If font was not loaded, fallback
|
// If font was not loaded, fallback
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
return _wm->_fontMan->getFont(Graphics::MacFont(kMacFontChicago, 12, slant));
|
return _wm->_fontMan->getFont(Graphics::MacFont(kMacFontChicago, 12, slant));
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user