diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-16 10:53:33 -0400 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2016-05-16 10:53:33 -0400 |
commit | 3c51eb91645fb9ab6e6cbe49b354408a6e77d1d1 (patch) | |
tree | 26de024b8e1376e4ae8f6b27cceb8e610024f6fd /src/inventory.cpp | |
parent | 3815da82430df2c1ed44858da3d8425946539b04 (diff) |
Stars and Stripes forevahh!
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 29e2dc9..8c662c4 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -104,7 +104,9 @@ void items(void) ItemMap.back()->tex = new Texturec(1, exml->Attribute("sprite")); // get the width and height of the object based off of its sprite - ItemMap.back()->dim = Texture::imageDim(exml->Attribute("sprite")); + dim2 tmpDim = Texture::imageDim(exml->Attribute("sprite")); + ItemMap.back()->dim.x = HLINES(tmpDim.x/2); + ItemMap.back()->dim.y = HLINES(tmpDim.y/2); ItemMap.back()->name = exml->Attribute("name"); |