diff options
author | Max Horn | 2005-01-06 23:31:34 +0000 |
---|---|---|
committer | Max Horn | 2005-01-06 23:31:34 +0000 |
commit | 310576996c48a36d5bbdeaa654d7ffd711357e21 (patch) | |
tree | 175f5ff49de046fdd58ee9c49f17ffa9e1f3b7c5 | |
parent | 37a858d6f5046fb6c0e2be347b37c8f1d61fe1fe (diff) | |
download | scummvm-rg350-310576996c48a36d5bbdeaa654d7ffd711357e21.tar.gz scummvm-rg350-310576996c48a36d5bbdeaa654d7ffd711357e21.tar.bz2 scummvm-rg350-310576996c48a36d5bbdeaa654d7ffd711357e21.zip |
work around yet another MSVC problem
svn-id: r16470
-rw-r--r-- | graphics/fontman.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/graphics/fontman.cpp b/graphics/fontman.cpp index 0bee9ea925..1cacff0745 100644 --- a/graphics/fontman.cpp +++ b/graphics/fontman.cpp @@ -25,6 +25,8 @@ namespace GUI { extern const Graphics::NewFont g_consolefont; }; +DECLARE_SINGLETON(Graphics::FontManager); + namespace Graphics { const ScummFont g_scummfont; @@ -32,8 +34,6 @@ extern const NewFont g_sysfont; extern const NewFont g_sysfont_big; -DECLARE_SINGLETON(FontManager); - FontManager::FontManager() { } |