summaryrefslogtreecommitdiff
path: root/src/gui/inventory.cpp
diff options
context:
space:
mode:
authorBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-02 16:31:19 +0000
committerBjørn Lindeijer <bjorn@lindeijer.nl>2005-01-02 16:31:19 +0000
commite76a6e3d2cc40e382e2ca1c7348e36a4082a221b (patch)
tree5608d032613e083d86923ad7b339352e9f157498 /src/gui/inventory.cpp
parent40b4ecacd44bd3040d9600d6304422bdd7e2e4c4 (diff)
downloadmana-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.cpp4
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");
}
}
*/