BADA: Fixup indentation using tabs in lieu of space chars

This commit is contained in:
Chris Warren-Smith 2011-08-19 20:13:37 +10:00
parent 68f2ec53f7
commit 773f61253c

View file

@ -83,20 +83,20 @@ bool FontManager::setFont(FontUsage usage, const Font *font) {
switch (usage) {
case kConsoleFont:
delete g_consolefont;
g_consolefont = (const BdfFont *)font;
break;
g_consolefont = (const BdfFont *)font;
break;
case kGUIFont:
delete g_sysfont;
g_sysfont = (const BdfFont *)font;
break;
g_sysfont = (const BdfFont *)font;
break;
case kBigGUIFont:
delete g_sysfont_big;
g_sysfont_big = (const BdfFont *)font;
break;
default:
return false;
}
return true;
g_sysfont_big = (const BdfFont *)font;
break;
default:
return false;
}
return true;
}
void FontManager::removeFontName(const Common::String &name) {