From 8842ce17ecb7323446fdfedceb1eca6fd6db903b Mon Sep 17 00:00:00 2001 From: ApoC Date: Sat, 7 Feb 2009 03:40:52 +0100 Subject: [PATCH] [7238] Fixed typos in my prev. commit. Signed-off-by: ApoC --- src/game/MotionMaster.cpp | 4 ++-- src/shared/revision_nr.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/game/MotionMaster.cpp b/src/game/MotionMaster.cpp index 41b2e022b..91aa83e69 100644 --- a/src/game/MotionMaster.cpp +++ b/src/game/MotionMaster.cpp @@ -90,9 +90,9 @@ MotionMaster::UpdateMotion(uint32 diff) if (m_expList) { - for (int i = 0; i < m_expList.size(); ++i) + for (int i = 0; i < m_expList->size(); ++i) { - MovementGenerator* mg = m_expList[i]; + MovementGenerator* mg = (*m_expList)[i]; if (!isStatic(mg)) delete mg; } diff --git a/src/shared/revision_nr.h b/src/shared/revision_nr.h index ebbfefe54..f8ffeb005 100644 --- a/src/shared/revision_nr.h +++ b/src/shared/revision_nr.h @@ -1,4 +1,4 @@ #ifndef __REVISION_NR_H__ #define __REVISION_NR_H__ - #define REVISION_NR "7237" + #define REVISION_NR "7238" #endif // __REVISION_NR_H__ -- 2.11.4.GIT