aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/cache.h
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-05 12:30:41 +0000
committerMartin Kiewitz2010-02-05 12:30:41 +0000
commit51b608d794e0ac53403a1f96f36dd642677bbf1d (patch)
tree9e7a4310a67f7d6f748beab152136bd1c53a8b46 /engines/sci/graphics/cache.h
parent3ad4433adfd6c31b92d37d057ad677f9e971b836 (diff)
downloadscummvm-rg350-51b608d794e0ac53403a1f96f36dd642677bbf1d.tar.gz
scummvm-rg350-51b608d794e0ac53403a1f96f36dd642677bbf1d.tar.bz2
scummvm-rg350-51b608d794e0ac53403a1f96f36dd642677bbf1d.zip
SCI: renamed class Font to GfxFont
svn-id: r47900
Diffstat (limited to 'engines/sci/graphics/cache.h')
-rw-r--r--engines/sci/graphics/cache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/sci/graphics/cache.h b/engines/sci/graphics/cache.h
index c444b69c3c..b1754929b1 100644
--- a/engines/sci/graphics/cache.h
+++ b/engines/sci/graphics/cache.h
@@ -32,10 +32,10 @@
namespace Sci {
-class Font;
+class GfxFont;
class GfxView;
-typedef Common::HashMap<int, Font *> FontCache;
+typedef Common::HashMap<int, GfxFont *> FontCache;
typedef Common::HashMap<int, GfxView *> ViewCache;
class GfxCache {
@@ -43,7 +43,7 @@ public:
GfxCache(ResourceManager *resMan, GfxScreen *screen, GfxPalette *palette);
~GfxCache();
- Font *getFont(GuiResourceId fontId);
+ GfxFont *getFont(GuiResourceId fontId);
GfxView *getView(GuiResourceId viewId);
int16 kernelViewGetCelWidth(GuiResourceId viewId, int16 loopNo, int16 celNo);