aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/gui/gui_font.h
diff options
context:
space:
mode:
authorMartin Kiewitz2009-10-04 16:39:46 +0000
committerMartin Kiewitz2009-10-04 16:39:46 +0000
commit01fca745fd3bd64f31b3b65142b58fe4add3b2c1 (patch)
treea6967ac211f648fb505c35a64e8a0482b2327533 /engines/sci/gui/gui_font.h
parent4a9804a044997d67c4505a5842d38c62c4f4b45c (diff)
downloadscummvm-rg350-01fca745fd3bd64f31b3b65142b58fe4add3b2c1.tar.gz
scummvm-rg350-01fca745fd3bd64f31b3b65142b58fe4add3b2c1.tar.bz2
scummvm-rg350-01fca745fd3bd64f31b3b65142b58fe4add3b2c1.zip
SCI/gui: more renaming...
svn-id: r44620
Diffstat (limited to 'engines/sci/gui/gui_font.h')
-rw-r--r--engines/sci/gui/gui_font.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/sci/gui/gui_font.h b/engines/sci/gui/gui_font.h
index 1b0776e1d5..732f74c6d3 100644
--- a/engines/sci/gui/gui_font.h
+++ b/engines/sci/gui/gui_font.h
@@ -27,10 +27,10 @@ namespace Sci {
class SciGUIfont {
public:
- SciGUIfont(EngineState *state, SciGUIscreen *screen, sciResourceId resourceId);
+ SciGUIfont(EngineState *state, SciGUIscreen *screen, GUIResourceId resourceId);
~SciGUIfont();
- sciResourceId getResourceId();
+ GUIResourceId getResourceId();
byte getHeight();
byte getCharWidth(byte chr);
byte getCharHeight(byte chr);
@@ -38,12 +38,12 @@ public:
void draw(int16 chr, int16 top, int16 left, byte color, byte textface);
private:
- void initData(sciResourceId resourceId);
+ void initData(GUIResourceId resourceId);
EngineState *_s;
SciGUIscreen *_screen;
- sciResourceId _resourceId;
+ GUIResourceId _resourceId;
byte *_resourceData;
struct charinfo {