mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
GRAPHICS: Let FontManager::setFont accept an "const BdfFont *".
As the documentation points out this method currently only works for BDF fonts, thus it is safer to let it actually just accept such.
This commit is contained in:
parent
050b8e3360
commit
1574d644e8
@ -93,19 +93,19 @@ bool FontManager::assignFontToName(const Common::String &name, const Font *font)
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FontManager::setFont(FontUsage usage, const Font *font) {
|
||||
bool FontManager::setFont(FontUsage usage, const BdfFont *font) {
|
||||
switch (usage) {
|
||||
case kConsoleFont:
|
||||
delete g_consolefont;
|
||||
g_consolefont = (const BdfFont *)font;
|
||||
g_consolefont = font;
|
||||
break;
|
||||
case kGUIFont:
|
||||
delete g_sysfont;
|
||||
g_sysfont = (const BdfFont *)font;
|
||||
g_sysfont = font;
|
||||
break;
|
||||
case kBigGUIFont:
|
||||
delete g_sysfont_big;
|
||||
g_sysfont_big = (const BdfFont *)font;
|
||||
g_sysfont_big = font;
|
||||
break;
|
||||
default:
|
||||
return false;
|
||||
|
@ -32,6 +32,7 @@
|
||||
namespace Graphics {
|
||||
|
||||
class Font;
|
||||
class BdfFont;
|
||||
|
||||
class FontManager : public Common::Singleton<FontManager> {
|
||||
public:
|
||||
@ -75,7 +76,7 @@ public:
|
||||
* @param font the font object
|
||||
* @return true on success, false on failure
|
||||
*/
|
||||
bool setFont(FontUsage usage, const Font *font);
|
||||
bool setFont(FontUsage usage, const BdfFont *font);
|
||||
|
||||
/**
|
||||
* Removes binding from name to font
|
||||
|
Loading…
x
Reference in New Issue
Block a user