aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/display.h
diff options
context:
space:
mode:
authorArnaud Boutonné2010-10-21 17:09:57 +0000
committerArnaud Boutonné2010-10-21 17:09:57 +0000
commit0101a0e0bb7076c19b243c7f5ae2004653e5fc45 (patch)
treea39c61adc6a8d5556c5fea5f53382c41023279aa /engines/hugo/display.h
parentd251521f63b0d3d0e8dbaf16a867b043e6ddfedb (diff)
downloadscummvm-rg350-0101a0e0bb7076c19b243c7f5ae2004653e5fc45.tar.gz
scummvm-rg350-0101a0e0bb7076c19b243c7f5ae2004653e5fc45.tar.bz2
scummvm-rg350-0101a0e0bb7076c19b243c7f5ae2004653e5fc45.zip
HUGO: Moved _objects to a separate file
also suppressed some dereferencing svn-id: r53674
Diffstat (limited to 'engines/hugo/display.h')
-rw-r--r--engines/hugo/display.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/engines/hugo/display.h b/engines/hugo/display.h
index 6e8b15940a..dc687e0bb6 100644
--- a/engines/hugo/display.h
+++ b/engines/hugo/display.h
@@ -46,7 +46,7 @@ struct rect_t { // Rectangle used in Display
class Screen {
public:
- Screen(HugoEngine &vm);
+ Screen(HugoEngine *vm);
virtual ~Screen();
int16 fontHeight();
@@ -93,7 +93,7 @@ public:
}
protected:
- HugoEngine &_vm;
+ HugoEngine *_vm;
// Fonts used in dib (non-GDI)
byte _fnt; // Current font number
@@ -116,7 +116,7 @@ private:
class Screen_v1d : public Screen {
public:
- Screen_v1d(HugoEngine &vm);
+ Screen_v1d(HugoEngine *vm);
~Screen_v1d();
virtual void loadFont(int16 fontId);
@@ -124,7 +124,7 @@ public:
class Screen_v1w : public Screen {
public:
- Screen_v1w(HugoEngine &vm);
+ Screen_v1w(HugoEngine *vm);
~Screen_v1w();
virtual void loadFont(int16 fontId);