mirror of
https://github.com/TES3MP/openmw-tes3mp.git
synced 2025-01-19 21:53:51 +00:00
Workaround for GCC 5 bug
https://gcc.gnu.org/bugzilla/show_bug.cgi?id=61636
This commit is contained in:
parent
476a74c2d3
commit
899a6b5aa3
1 changed files with 1 additions and 1 deletions
|
@ -57,7 +57,7 @@ namespace DetourNavigator
|
|||
const AreaType areaType)
|
||||
{
|
||||
return mRecastMeshManager.updateObject(id, shape, transform, areaType,
|
||||
[&] (const auto& tile) { addChangedTile(tile, ChangeType::update); });
|
||||
[&] (const TilePosition& tile) { addChangedTile(tile, ChangeType::update); });
|
||||
}
|
||||
|
||||
bool NavMeshManager::removeObject(const ObjectId id)
|
||||
|
|
Loading…
Reference in a new issue