summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorEugenio Favalli <elvenprogrammer@gmail.com>2004-09-30 15:38:25 +0000
committerEugenio Favalli <elvenprogrammer@gmail.com>2004-09-30 15:38:25 +0000
commitbad2c2141c8c0ef9eca949e13d9d0bd696b88668 (patch)
tree0d44fac0cec813f9b3f87a93c3cf4387817f5c0d /src/gui
parentc3b55b7b987cfe58e0503b44011a32507290a3e4 (diff)
downloadmana-client-bad2c2141c8c0ef9eca949e13d9d0bd696b88668.tar.gz
mana-client-bad2c2141c8c0ef9eca949e13d9d0bd696b88668.tar.bz2
mana-client-bad2c2141c8c0ef9eca949e13d9d0bd696b88668.tar.xz
mana-client-bad2c2141c8c0ef9eca949e13d9d0bd696b88668.zip
*** empty log message ***
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/inventory.cpp11
1 files changed, 3 insertions, 8 deletions
diff --git a/src/gui/inventory.cpp b/src/gui/inventory.cpp
index cc330895..ca9bde7a 100644
--- a/src/gui/inventory.cpp
+++ b/src/gui/inventory.cpp
@@ -28,13 +28,6 @@
DIALOG inventory_dialog[] = {
/* (dialog proc) (x) (y) (w) (h) (fg) (bg) (key) (flags) (d1) (d2) (dp) (dp2) (dp3) */
{ tmw_dialog_proc, 300, 252, 322, 60, 0, -1, 0, 0, 0, 0, (char*)"Inventory", NULL, NULL },
- /*{ tmw_text_proc, 304, 284, 50, 10, 0, 0, 0, 0, 0, 0, (char*)"Name:", NULL, NULL },
- { tmw_text_proc, 304, 304, 50, 10, 0, 0, 0, 0, 0, 0,(char*)"Password:", NULL, NULL },
- { tmw_edit_proc, 360, 280, 130, 18, 0, -1, 0, 0, 24, 0, username, NULL, NULL },
- { tmw_password_proc, 360, 300, 130, 18, 0, -1, 0, 0, 24, 0, password, NULL, NULL },
- { tmw_button_proc, 398, 322, 44, 18, 0, -1, 'o', D_EXIT, -1, 0, (char*)"&Ok", NULL, NULL },
- { tmw_button_proc, 446, 322, 44, 18, 0, -1, 'c', D_EXIT, -1, 0, (char*)"&Cancel", NULL, NULL },
- { tmw_check_proc, 304, 322, 60, 18, 0, 0, '1', 0, 0, 0, (char*)"keep", NULL, NULL }, */
{ NULL, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, NULL, NULL, NULL },
};
@@ -159,8 +152,10 @@ void TmwInventory::draw(BITMAP * buffer) {
ypos = inventory_dialog[0].y;
if(items[itemX][itemY].flag) //draw the item
+ // If the item is known
if(items[itemX][itemY].itemIDNum>=501 && items[itemX][itemY].itemIDNum<=510)
- masked_blit((BITMAP *)itemset[items[itemX][itemY].itemIDNum-501].dat, buffer, 0, 0, (xpos+items[itemX][itemY].xpos), (ypos+items[itemX][itemY].ypos), 32, 32);
+ masked_blit((BITMAP *)itemset[items[itemX][itemY].itemIDNum-500].dat, buffer, 0, 0, (xpos+items[itemX][itemY].xpos), (ypos+items[itemX][itemY].ypos), 32, 32);
+ // If the item is unknown
else
masked_blit((BITMAP *)itemset[0].dat, buffer, 0, 0, (xpos+items[itemX][itemY].xpos), (ypos+items[itemX][itemY].ypos), 32, 32);