diff --git a/src/game.cpp b/src/game.cpp index af76d2e02eb92e64f246e0de3acdff2ee791687e..87ee081bed097c1a8a35aa86a4dd27981a6b6c46 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -492,7 +492,7 @@ class ProfilerGraph color(color) {} }; - std::list<Piece> m_log; + std::vector<Piece> m_log; public: u32 m_log_max_size; @@ -515,7 +515,7 @@ class ProfilerGraph { std::map<std::string, Meta> m_meta; - for (std::list<Piece>::const_iterator k = m_log.begin(); + for (std::vector<Piece>::const_iterator k = m_log.begin(); k != m_log.end(); k++) { const Piece &piece = *k; @@ -613,7 +613,7 @@ class ProfilerGraph float lastscaledvalue = 0.0; bool lastscaledvalue_exists = false; - for (std::list<Piece>::const_iterator j = m_log.begin(); + for (std::vector<Piece>::const_iterator j = m_log.begin(); j != m_log.end(); j++) { const Piece &piece = *j; float value = 0;