diff options
author | Thierry Crozat | 2011-05-22 15:15:15 +0100 |
---|---|---|
committer | Thierry Crozat | 2011-06-06 23:20:08 +0100 |
commit | 592cca5402f9162fc70b48f40b95faec44341bd0 (patch) | |
tree | 3c4f654a16552f74faabb3de8466250ca1ed1170 /audio/softsynth | |
parent | 72080d8972169879416f64a432f4b666207af3f9 (diff) | |
download | scummvm-rg350-592cca5402f9162fc70b48f40b95faec44341bd0.tar.gz scummvm-rg350-592cca5402f9162fc70b48f40b95faec44341bd0.tar.bz2 scummvm-rg350-592cca5402f9162fc70b48f40b95faec44341bd0.zip |
GRAPHICS: Get rid of kSODFont (ScummFont)
OSD is now using the kGUIFont instead. The main advantage is that
the kGUIFont can be used for translated text while only ASCII
characters were present in ScummFont.
Diffstat (limited to 'audio/softsynth')
-rw-r--r-- | audio/softsynth/mt32.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/audio/softsynth/mt32.cpp b/audio/softsynth/mt32.cpp index 304be06afe..6d13ec33b4 100644 --- a/audio/softsynth/mt32.cpp +++ b/audio/softsynth/mt32.cpp @@ -135,7 +135,7 @@ static int eatSystemEvents() { } static void drawProgress(float progress) { - const Graphics::Font &font(*FontMan.getFontByUsage(Graphics::FontManager::kOSDFont)); + const Graphics::Font &font(*FontMan.getFontByUsage(Graphics::FontManager::kGUIFont)); Graphics::Surface *screen = g_system->lockScreen(); assert(screen); @@ -174,7 +174,7 @@ static void drawProgress(float progress) { } static void drawMessage(int offset, const Common::String &text) { - const Graphics::Font &font(*FontMan.getFontByUsage(Graphics::FontManager::kOSDFont)); + const Graphics::Font &font(*FontMan.getFontByUsage(Graphics::FontManager::kGUIFont)); Graphics::Surface *screen = g_system->lockScreen(); assert(screen); |