diff options
-rw-r--r-- | engines/hugo/display.cpp | 3 | ||||
-rw-r--r-- | engines/hugo/display.h | 1 |
2 files changed, 4 insertions, 0 deletions
diff --git a/engines/hugo/display.cpp b/engines/hugo/display.cpp index 7a42dd5cd0..f84e595e45 100644 --- a/engines/hugo/display.cpp +++ b/engines/hugo/display.cpp @@ -62,6 +62,9 @@ Screen::Screen(HugoEngine &vm) : _vm(vm) { } +Screen::~Screen() { +} + void Screen::createPal() { debugC(1, kDebugDisplay, "createPal"); diff --git a/engines/hugo/display.h b/engines/hugo/display.h index 14c5b0ebc5..c7586c5252 100644 --- a/engines/hugo/display.h +++ b/engines/hugo/display.h @@ -40,6 +40,7 @@ struct rect_t; class Screen { public: Screen(HugoEngine &vm); + virtual ~Screen(); int16 fontHeight(); int16 stringLength(char *s); |