mirror of
https://github.com/OpenMW/openmw.git
synced 2025-04-01 19:36:40 +00:00
Write unknown status numeric value
This commit is contained in:
parent
7d73e73cad
commit
eb140ed15f
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ namespace DetourNavigator
|
||||||
case UpdateNavMeshStatus::lost:
|
case UpdateNavMeshStatus::lost:
|
||||||
return stream << "lost";
|
return stream << "lost";
|
||||||
}
|
}
|
||||||
return stream << "unknown";
|
return stream << "unknown(" << static_cast<unsigned>(value) << ")";
|
||||||
}
|
}
|
||||||
|
|
||||||
AsyncNavMeshUpdater::AsyncNavMeshUpdater(const Settings& settings, TileCachedRecastMeshManager& recastMeshManager,
|
AsyncNavMeshUpdater::AsyncNavMeshUpdater(const Settings& settings, TileCachedRecastMeshManager& recastMeshManager,
|
||||||
|
|
Loading…
Reference in a new issue