1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-01-26 09:35:28 +00:00

Use a ConstPtr for the PtrAnimationMap

This commit is contained in:
scrawl 2015-12-18 17:20:29 +01:00
parent 553132cb51
commit 7a4aac1842

View File

@ -57,7 +57,7 @@ public:
};
class Objects{
typedef std::map<MWWorld::Ptr,Animation*> PtrAnimationMap;
typedef std::map<MWWorld::ConstPtr,Animation*> PtrAnimationMap;
typedef std::map<const MWWorld::CellStore*, osg::ref_ptr<osg::Group> > CellMap;
CellMap mCellSceneNodes;