[Scummvm-cvs-logs] SF.net SVN: scummvm:[52698] scummvm/trunk/engines/hugo

strangerke at users.sourceforge.net strangerke at users.sourceforge.net
Mon Sep 13 01:10:31 CEST 2010


Revision: 52698
          http://scummvm.svn.sourceforge.net/scummvm/?rev=52698&view=rev
Author:   strangerke
Date:     2010-09-12 23:10:31 +0000 (Sun, 12 Sep 2010)

Log Message:
-----------
HUGO: Fix GCC warning (Thanks MSVC for not showing those)

Modified Paths:
--------------
    scummvm/trunk/engines/hugo/display.cpp
    scummvm/trunk/engines/hugo/display.h

Modified: scummvm/trunk/engines/hugo/display.cpp
===================================================================
--- scummvm/trunk/engines/hugo/display.cpp	2010-09-12 22:59:32 UTC (rev 52697)
+++ scummvm/trunk/engines/hugo/display.cpp	2010-09-12 23:10:31 UTC (rev 52698)
@@ -62,6 +62,9 @@
 
 }
 
+Screen::~Screen() {
+}
+
 void Screen::createPal() {
 	debugC(1, kDebugDisplay, "createPal");
 

Modified: scummvm/trunk/engines/hugo/display.h
===================================================================
--- scummvm/trunk/engines/hugo/display.h	2010-09-12 22:59:32 UTC (rev 52697)
+++ scummvm/trunk/engines/hugo/display.h	2010-09-12 23:10:31 UTC (rev 52698)
@@ -40,6 +40,7 @@
 class Screen {
 public:
 	Screen(HugoEngine &vm);
+	virtual ~Screen();
 
 	int16    fontHeight();
 	int16    stringLength(char *s);


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list