Core/Tools: Fix brutal linking in mmaps extractor.

* caused warnings with shared linking
* ref #15671
This commit is contained in:
Naios
2015-10-12 14:13:50 +02:00
parent 0946fcf2aa
commit 13654bac2c
7 changed files with 36 additions and 79 deletions

View File

@@ -474,4 +474,10 @@ namespace VMAP
}
iLoadedTiles.erase(tile);
}
void StaticMapTree::getModelInstances(ModelInstance* &models, uint32 &count)
{
models = iTreeValues;
count = iNTreeValues;
}
}