diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-13 08:28:43 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-13 08:28:43 -0500 |
commit | a32339dc700759ab44a360953c9c24d009b11ecc (patch) | |
tree | bf351f2b495403f523a82824a9bc8317b5da81ec /src/inventory.cpp | |
parent | 613ab3be6ee76595c04b89992e62c41b52bc1a2f (diff) | |
parent | 1177a2ec843533b76fa9bd8573686f684103075c (diff) |
Added object class, and added quest listing
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index c79a29b..3360e6b 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -145,7 +145,7 @@ int Inventory::useItem(void){ ITEM_ID id = item[sel].id; switch(id){ default: - ui::dialogBox(itemName[id],"You cannot use this item."); + ui::dialogBox(itemName[id],NULL,"You cannot use this item."); break; } return 0; |