mirror of
https://github.com/OpenMW/openmw.git
synced 2025-02-06 07:15:36 +00:00
Use proper prefix for CollisionShapeType
This commit is contained in:
parent
a1438f65fe
commit
61c69c5563
1 changed files with 4 additions and 4 deletions
|
@ -79,13 +79,13 @@ namespace DetourNavigator
|
|||
switch (v)
|
||||
{
|
||||
case CollisionShapeType::Aabb:
|
||||
return s << "AgentShapeType::Aabb";
|
||||
return s << "CollisionShapeType::Aabb";
|
||||
case CollisionShapeType::RotatingBox:
|
||||
return s << "AgentShapeType::RotatingBox";
|
||||
return s << "CollisionShapeType::RotatingBox";
|
||||
case CollisionShapeType::Cylinder:
|
||||
return s << "AgentShapeType::Cylinder";
|
||||
return s << "CollisionShapeType::Cylinder";
|
||||
}
|
||||
return s << "AgentShapeType::" << static_cast<std::underlying_type_t<CollisionShapeType>>(v);
|
||||
return s << "CollisionShapeType::" << static_cast<std::underlying_type_t<CollisionShapeType>>(v);
|
||||
}
|
||||
|
||||
std::ostream& operator<<(std::ostream& s, const AgentBounds& v)
|
||||
|
|
Loading…
Reference in a new issue