aboutsummaryrefslogtreecommitdiff
path: root/engines/gob/gob.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/gob/gob.cpp')
-rw-r--r--engines/gob/gob.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/gob/gob.cpp b/engines/gob/gob.cpp
index 71d89912ba..9eeb82ad6f 100644
--- a/engines/gob/gob.cpp
+++ b/engines/gob/gob.cpp
@@ -479,14 +479,14 @@ bool GobEngine::initGameParts() {
_global->_mouseMaxX = 640;
_global->_mouseMaxY = 480;
_mode = 0x18;
- _global->_primarySurfDesc = new SurfaceDesc(0x18, 640, 480);
+ _global->_primarySurfDesc = SurfaceDescPtr(new SurfaceDesc(0x18, 640, 480));
} else {
_video->_surfWidth = _width = 320;
_video->_surfHeight = _video->_splitHeight1 = _height = 200;
_global->_mouseMaxX = 320;
_global->_mouseMaxY = 200;
_mode = 0x14;
- _global->_primarySurfDesc = new SurfaceDesc(0x14, 320, 200);
+ _global->_primarySurfDesc = SurfaceDescPtr(new SurfaceDesc(0x14, 320, 200));
}
return true;