aboutsummaryrefslogtreecommitdiff
path: root/graphics/fontman.cpp
diff options
context:
space:
mode:
authorMax Horn2005-02-06 18:12:29 +0000
committerMax Horn2005-02-06 18:12:29 +0000
commit028cc42f2b8e453be5d6f0dd2a65556dbf3d6911 (patch)
treea8cc410072aa209973be795dc9a4d2351f0ee5d9 /graphics/fontman.cpp
parent317358ea488702683082e40d3d9ee13a81c62a6d (diff)
downloadscummvm-rg350-028cc42f2b8e453be5d6f0dd2a65556dbf3d6911.tar.gz
scummvm-rg350-028cc42f2b8e453be5d6f0dd2a65556dbf3d6911.tar.bz2
scummvm-rg350-028cc42f2b8e453be5d6f0dd2a65556dbf3d6911.zip
Moved the console font from gui to graphics
svn-id: r16742
Diffstat (limited to 'graphics/fontman.cpp')
-rw-r--r--graphics/fontman.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/graphics/fontman.cpp b/graphics/fontman.cpp
index cc7675fd96..e0ca9e5997 100644
--- a/graphics/fontman.cpp
+++ b/graphics/fontman.cpp
@@ -21,10 +21,6 @@
#include "graphics/fontman.h"
//#include "gui/consolefont.h"
-namespace GUI {
- extern const Graphics::NewFont g_consolefont;
-}
-
DECLARE_SINGLETON(Graphics::FontManager);
namespace Graphics {
@@ -32,6 +28,7 @@ namespace Graphics {
const ScummFont g_scummfont;
extern const NewFont g_sysfont;
extern const NewFont g_sysfont_big;
+extern const NewFont g_consolefont;
FontManager::FontManager() {
@@ -45,7 +42,7 @@ const Font *FontManager::getFontByUsage(FontUsage usage) const {
case kOSDFont:
return &g_scummfont;
case kConsoleFont:
- return &GUI::g_consolefont;
+ return &g_consolefont;
case kGUIFont:
return &g_sysfont;
case kBigGUIFont: