aboutsummaryrefslogtreecommitdiffstats
path: root/src/inventory.cpp
diff options
context:
space:
mode:
authordrumsetmonkey <abelleisle@roadrunner.com>2016-03-04 08:42:00 -0500
committerdrumsetmonkey <abelleisle@roadrunner.com>2016-03-04 08:42:00 -0500
commit30dd8efe8d71648bea7604ebee5afc4d55b25a6b (patch)
tree73cf4dbaa2be340597f6fac7fd7a1cedae9cbdea /src/inventory.cpp
parent6af8dcbaa41a7db52ff8f6074d2b113ec7eaf12d (diff)
You can buy sausages from meme
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r--src/inventory.cpp9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
index cd8bb71..d75a1bf 100644
--- a/src/inventory.cpp
+++ b/src/inventory.cpp
@@ -66,7 +66,7 @@ int Inventory::takeItem(std::string name,uint count){
}
if(id == 999999)
- return -1;
+ return -1; //if no such item exists
/*
* Inventory lookup
@@ -142,12 +142,13 @@ const char *getItemTexturePath(std::string name){
return NULL;
}
-Texturec *getItemTexture(std::string name){
+GLuint getItemTexture(std::string name){
for(auto &i : itemMap){
if(i->name == name)
- return i->tex;
+ return Texture::loadTexture(i->texloc);
}
- return NULL;
+
+ return Texture::loadTexture("assets/items/ITEM_TEST.png");
}
float getItemWidth(std::string name){