diff options
author | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 07:33:26 -0500 |
---|---|---|
committer | drumsetmonkey <abelleisle@roadrunner.com> | 2015-11-30 07:33:26 -0500 |
commit | fbe1b6c3a0a3427111577e6b77600f5669012583 (patch) | |
tree | 47e730acbcc03d9f0116d49b29410bfe83cfbb4a /src/entities.cpp | |
parent | e21db32169966b983e09b53801ee1a6d3101e57e (diff) | |
parent | da95ece60c808ca04dd5c61068d8016a92c6c9b5 (diff) |
Look at my fancy inventory
Diffstat (limited to 'src/entities.cpp')
-rw-r--r-- | src/entities.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/entities.cpp b/src/entities.cpp index c2c560a..97b4d35 100644 --- a/src/entities.cpp +++ b/src/entities.cpp @@ -108,7 +108,7 @@ Object::Object(int id):identifier(id){ height = HLINE * 8; maxHealth = health = 1; - tex = new Texturec(1, item[id].textureLoc); + //tex = new Texturec(1, item[id].textureLoc); questObject = false; pickupDialog="\0"; @@ -122,7 +122,7 @@ Object::Object(int id, bool qo, char *pd):identifier(id),questObject(qo),pickupD height = HLINE * 8; maxHealth = health = 1; - tex = new Texturec(1, item[id].textureLoc); + //tex = new Texturec(1, item[id].textureLoc); } |