diff options
author | Ira Rice <irarice@gmail.com> | 2008-11-22 01:56:05 +0000 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2008-11-22 01:56:05 +0000 |
commit | 73ccb1a8eacd7cb339eca67d7312107739f03605 (patch) | |
tree | 7c08db85553087b13bb6a7d286c399000a974ee0 /src/gui/buy.h | |
parent | f5c0ed3ec4216219494121721a4cce0c7ec4fb34 (diff) | |
download | mana-73ccb1a8eacd7cb339eca67d7312107739f03605.tar.gz mana-73ccb1a8eacd7cb339eca67d7312107739f03605.tar.bz2 mana-73ccb1a8eacd7cb339eca67d7312107739f03605.tar.xz mana-73ccb1a8eacd7cb339eca67d7312107739f03605.zip |
While there is still a small visual artifact, this patch fixes the buy
window so that it properly reports how much money you have.
Diffstat (limited to 'src/gui/buy.h')
-rw-r--r-- | src/gui/buy.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/buy.h b/src/gui/buy.h index 0915385a..3b94bbaa 100644 --- a/src/gui/buy.h +++ b/src/gui/buy.h @@ -117,9 +117,9 @@ class BuyDialog : public Window, public gcn::ActionListener, ShopItems *mShopItems; - int mMoney; - int mAmountItems; - int mMaxItems; + Uint32 mMoney; + Uint32 mAmountItems; + Uint32 mMaxItems; }; #endif |