diff options
author | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-02 16:31:19 +0000 |
---|---|---|
committer | Bjørn Lindeijer <bjorn@lindeijer.nl> | 2005-01-02 16:31:19 +0000 |
commit | e76a6e3d2cc40e382e2ca1c7348e36a4082a221b (patch) | |
tree | 5608d032613e083d86923ad7b339352e9f157498 /src/gui/inventory.cpp | |
parent | 40b4ecacd44bd3040d9600d6304422bdd7e2e4c4 (diff) | |
download | mana-client-e76a6e3d2cc40e382e2ca1c7348e36a4082a221b.tar.gz mana-client-e76a6e3d2cc40e382e2ca1c7348e36a4082a221b.tar.bz2 mana-client-e76a6e3d2cc40e382e2ca1c7348e36a4082a221b.tar.xz mana-client-e76a6e3d2cc40e382e2ca1c7348e36a4082a221b.zip |
Got rid of hairset.dat and playerset.dat.
Diffstat (limited to 'src/gui/inventory.cpp')
-rw-r--r-- | src/gui/inventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/inventory.cpp b/src/gui/inventory.cpp index d506d8ed..1a8f59d7 100644 --- a/src/gui/inventory.cpp +++ b/src/gui/inventory.cpp @@ -101,7 +101,7 @@ void InventoryWindow::draw(gcn::Graphics *graphics) } else { textprintf_ex(buffer, font, x + itemMeny_x, - y + itemMeny_y, MAKECOL_BLACK, -1, "Use item"); + y + itemMeny_y, makecol(0,0,0), -1, "Use item"); } if (y + itemMeny_y + 10 < mouse_y && y + itemMeny_y + 20 > mouse_y) { if (mouse_b & 1) { @@ -114,7 +114,7 @@ void InventoryWindow::draw(gcn::Graphics *graphics) } else { textprintf_ex(buffer, font, x + itemMeny_x, - y + itemMeny_y + 10, MAKECOL_BLACK, -1, "Del item"); + y + itemMeny_y + 10, makecol(0,0,0), -1, "Del item"); } } */ |