summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/actormanager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/actormanager.cpp b/src/actormanager.cpp
index 53f8c5a6e..b5ce5cbbc 100644
--- a/src/actormanager.cpp
+++ b/src/actormanager.cpp
@@ -1693,11 +1693,11 @@ void ActorManager::removePickupItem(const std::string &name)
#define addMobToList(name, mob) \
{\
- const int size = get##mob##sSize();\
- if (size > 0)\
+ const int sz = get##mob##sSize();\
+ if (sz > 0)\
{\
const int idx = get##mob##Index("");\
- if (idx + 1 == size)\
+ if (idx + 1 == sz)\
{\
std::list<std::string>::iterator itr = m##mob##s.end();\
-- itr;\