diff options
| author | Martin Kiewitz | 2015-06-07 17:05:26 +0200 | 
|---|---|---|
| committer | Martin Kiewitz | 2015-06-07 17:05:26 +0200 | 
| commit | 4c9e67ccfa709a74f2c78580f42bb642b258cd22 (patch) | |
| tree | 947fff50218ab4ab35caf4a6f2624349b241babd /engines/sherlock/map.cpp | |
| parent | ef06a86ac87d71bcc1248c29682888dc8e8012d4 (diff) | |
| download | scummvm-rg350-4c9e67ccfa709a74f2c78580f42bb642b258cd22.tar.gz scummvm-rg350-4c9e67ccfa709a74f2c78580f42bb642b258cd22.tar.bz2 scummvm-rg350-4c9e67ccfa709a74f2c78580f42bb642b258cd22.zip  | |
SHERLOCK: 3DO animation support
Diffstat (limited to 'engines/sherlock/map.cpp')
| -rw-r--r-- | engines/sherlock/map.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sherlock/map.cpp b/engines/sherlock/map.cpp index 96f93d42d7..4e8ac3ecc6 100644 --- a/engines/sherlock/map.cpp +++ b/engines/sherlock/map.cpp @@ -51,7 +51,7 @@ const byte *MapPaths::getPath(int srcLocation, int destLocation) {  /*----------------------------------------------------------------*/ -Map::Map(SherlockEngine *vm): _vm(vm), _topLine(g_system->getWidth(), 12) { +Map::Map(SherlockEngine *vm): _vm(vm), _topLine(g_system->getWidth(), 12, vm->getPlatform()) {  	_active = false;  	_mapCursors = nullptr;  	_shapes = nullptr; @@ -286,7 +286,7 @@ void Map::setupSprites() {  	_shapes = new ImageFile("mapicon.vgs");  	_iconShapes = new ImageFile("overicon.vgs"); -	_iconSave.create((*_shapes)[4]._width, (*_shapes)[4]._height); +	_iconSave.create((*_shapes)[4]._width, (*_shapes)[4]._height, _vm->getPlatform());  	Person &p = people[AL];  	p._description = " ";  	p._type = CHARACTER;  | 
