From d35020ac1778ed9deb6532b226d758ded04a9ce9 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Wed, 26 Mar 2008 22:26:59 +0000 Subject: Init the _fmtownsBuf in the constructor, not in setupScumm() (fixes a leak, and ensure that _fmtownsBuf always is inited) svn-id: r31256 --- engines/scumm/scumm.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'engines/scumm') diff --git a/engines/scumm/scumm.cpp b/engines/scumm/scumm.cpp index 3a93fae0fa..d2e8404d66 100644 --- a/engines/scumm/scumm.cpp +++ b/engines/scumm/scumm.cpp @@ -528,6 +528,11 @@ ScummEngine::ScummEngine(OSystem *syst, const DetectorResult &dr) else _compositeBuf = 0; + _fmtownsBuf = 0; + if (_game.platform == Common::kPlatformFMTowns && _language == Common::JA_JPN) { + _fmtownsBuf = (byte *)malloc(_screenWidth * _textSurfaceMultiplier * _screenHeight * _textSurfaceMultiplier); + } + _herculesBuf = 0; if (_renderMode == Common::kRenderHercA || _renderMode == Common::kRenderHercG) { _herculesBuf = (byte *)malloc(Common::kHercW * Common::kHercH); @@ -1198,11 +1203,6 @@ void ScummEngine::setupScumm() { Graphics::initfonts(); #endif - _fmtownsBuf = 0; - if (_game.platform == Common::kPlatformFMTowns && _language == Common::JA_JPN) { - _fmtownsBuf = (byte *)malloc(_screenWidth * _textSurfaceMultiplier * _screenHeight * _textSurfaceMultiplier); - } - free(_compositeBuf); _compositeBuf = (byte *)malloc(_screenWidth * _textSurfaceMultiplier * _screenHeight * _textSurfaceMultiplier); } -- cgit v1.2.3