aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorArnaud Boutonné2010-09-12 23:10:31 +0000
committerArnaud Boutonné2010-09-12 23:10:31 +0000
commit4ac61cc29058dfa5d18dfc55dcec55afcdace78a (patch)
treea317fd4dac5223256c143be63d31f7a854769e7c /engines
parent597eed026611eeaab6d992308677fa59b4f18908 (diff)
downloadscummvm-rg350-4ac61cc29058dfa5d18dfc55dcec55afcdace78a.tar.gz
scummvm-rg350-4ac61cc29058dfa5d18dfc55dcec55afcdace78a.tar.bz2
scummvm-rg350-4ac61cc29058dfa5d18dfc55dcec55afcdace78a.zip
HUGO: Fix GCC warning (Thanks MSVC for not showing those)
svn-id: r52698
Diffstat (limited to 'engines')
-rw-r--r--engines/hugo/display.cpp3
-rw-r--r--engines/hugo/display.h1
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);