diff options
author | Chris Warren-Smith | 2011-08-19 20:13:37 +1000 |
---|---|---|
committer | Chris Warren-Smith | 2011-08-21 16:39:09 +1000 |
commit | 773f61253ca1d921d78056e1bf777a5fd74c63e7 (patch) | |
tree | 1d62886905c8b7c44551b930a22624e9709b877a /graphics/fontman.cpp | |
parent | 68f2ec53f728fdfe3912517df0e13f11d90d8a92 (diff) | |
download | scummvm-rg350-773f61253ca1d921d78056e1bf777a5fd74c63e7.tar.gz scummvm-rg350-773f61253ca1d921d78056e1bf777a5fd74c63e7.tar.bz2 scummvm-rg350-773f61253ca1d921d78056e1bf777a5fd74c63e7.zip |
BADA: Fixup indentation using tabs in lieu of space chars
Diffstat (limited to 'graphics/fontman.cpp')
-rw-r--r-- | graphics/fontman.cpp | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/graphics/fontman.cpp b/graphics/fontman.cpp index 43a6e717eb..a10d27a2b0 100644 --- a/graphics/fontman.cpp +++ b/graphics/fontman.cpp @@ -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) { |