diff options
Diffstat (limited to 'engines/wintermute/base/base_persistence_manager.cpp')
| -rw-r--r-- | engines/wintermute/base/base_persistence_manager.cpp | 8 | 
1 files changed, 4 insertions, 4 deletions
| diff --git a/engines/wintermute/base/base_persistence_manager.cpp b/engines/wintermute/base/base_persistence_manager.cpp index 3d0fc0e925..bea55fb857 100644 --- a/engines/wintermute/base/base_persistence_manager.cpp +++ b/engines/wintermute/base/base_persistence_manager.cpp @@ -8,12 +8,12 @@   * modify it under the terms of the GNU General Public License   * as published by the Free Software Foundation; either version 2   * of the License, or (at your option) any later version. - + *   * This program is distributed in the hope that it will be useful,   * but WITHOUT ANY WARRANTY; without even the implied warranty of   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the   * GNU General Public License for more details. - + *   * You should have received a copy of the GNU General Public License   * along with this program; if not, write to the Free Software   * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. @@ -38,8 +38,8 @@  #include "engines/wintermute/base/sound/base_sound.h"  #include "engines/wintermute/graphics/transparent_surface.h"  #include "engines/wintermute/wintermute.h" -#include "graphics/decoders/bmp.h"  #include "graphics/scaler.h" +#include "image/bmp.h"  #include "common/memstream.h"  #include "common/str.h"  #include "common/system.h" @@ -170,7 +170,7 @@ void BasePersistenceManager::getSaveStateDesc(int slot, SaveStateDescriptor &des  	if (thumbSize > 0) {  		Common::MemoryReadStream thumbStream(thumbData, thumbSize, DisposeAfterUse::NO); -		Graphics::BitmapDecoder bmpDecoder; +		Image::BitmapDecoder bmpDecoder;  		if (bmpDecoder.loadStream(thumbStream)) {  			const Graphics::Surface *bmpSurface = bmpDecoder.getSurface();  			TransparentSurface *scaleableSurface = new TransparentSurface(*bmpSurface, false); | 
