aboutsummaryrefslogtreecommitdiff
path: root/engines/hugo/display.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/hugo/display.h')
-rw-r--r--engines/hugo/display.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/engines/hugo/display.h b/engines/hugo/display.h
index fd008cc97e..ff49661536 100644
--- a/engines/hugo/display.h
+++ b/engines/hugo/display.h
@@ -36,18 +36,18 @@
namespace Hugo {
enum overlayState_t {kOvlUndef, kOvlForeground, kOvlBackground}; // Overlay state
-struct rect_t { // Rectangle used in Display list
- int16 x; // Position in dib
- int16 y; // Position in dib
- int16 dx; // width
- int16 dy; // height
-};
-
static const int kCenter = -1; // Used to center text in x
class Screen {
public:
+ struct rect_t { // Rectangle used in Display list
+ int16 x; // Position in dib
+ int16 y; // Position in dib
+ int16 dx; // width
+ int16 dy; // height
+ };
+
Screen(HugoEngine *vm);
virtual ~Screen();