diff options
Diffstat (limited to 'src/game/Bag.cpp')
-rw-r--r-- | src/game/Bag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/game/Bag.cpp b/src/game/Bag.cpp index 86befec7550..223c40848b2 100644 --- a/src/game/Bag.cpp +++ b/src/game/Bag.cpp @@ -38,7 +38,7 @@ Bag::Bag( ): Item() Bag::~Bag() { - for(int i = 0; i < MAX_BAG_SIZE; ++i) + for(uint8 i = 0; i < MAX_BAG_SIZE; ++i) if (m_bagslot[i]) delete m_bagslot[i]; } |