diff options
Diffstat (limited to 'src/map.h')
-rw-r--r-- | src/map.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -400,8 +400,8 @@ class Map : public Properties unsigned mOnClosedList, mOnOpenList; // Overlay data - std::list<AmbientLayer*> mBackgrounds; - std::list<AmbientLayer*> mForegrounds; + std::vector<AmbientLayer> mBackgrounds; + std::vector<AmbientLayer> mForegrounds; float mLastScrollX; float mLastScrollY; |