summaryrefslogtreecommitdiff
path: root/src/inventory.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2012-07-23 00:10:43 +0300
committerAndrei Karas <akaras@inbox.ru>2012-07-23 00:10:43 +0300
commitd97189f055798b5b2051c1c5770a3def62747461 (patch)
treed66a891dba33d2ce1c882e0de7d6145bb2e0326b /src/inventory.h
parent25dce1399e40f24809842303d48ef090439de1e5 (diff)
downloadManaVerse-d97189f055798b5b2051c1c5770a3def62747461.tar.gz
ManaVerse-d97189f055798b5b2051c1c5770a3def62747461.tar.bz2
ManaVerse-d97189f055798b5b2051c1c5770a3def62747461.tar.xz
ManaVerse-d97189f055798b5b2051c1c5770a3def62747461.zip
Improve perfomance in some object constructors.
Diffstat (limited to 'src/inventory.h')
-rw-r--r--src/inventory.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.h b/src/inventory.h
index 85756b66f..74f3e695d 100644
--- a/src/inventory.h
+++ b/src/inventory.h
@@ -161,8 +161,8 @@ class Inventory
void distributeSlotsChangedEvent();
int mType;
- Item **mItems; /**< The holder of items */
unsigned mSize; /**< The max number of inventory items */
+ Item **mItems; /**< The holder of items */
int mUsed; /**< THe number of slots in use */
};