diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-29 08:48:52 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-03-29 08:48:52 -0400 |
commit | a9a9777190086bd2ce2aa54e20a1101509614463 (patch) | |
tree | dfd754e45f2d8fc4cf955470681c39c502cde1b4 /src/inventory.cpp | |
parent | 82c178d797b9a23c31d7dad1cc8cac29d27c6eb1 (diff) |
began reworking indoors
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 7ba5909..d9ff756 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -9,9 +9,8 @@ extern Player *player; extern GLuint invUI; static float hangle = 0.0f; static bool swing = false; -//static float xc,yc; static vec2 itemLoc; -static const unsigned char numSlot = 7; +static const unsigned int numSlot = 2000; Mix_Chunk* swordSwing; static std::vector<Item *> itemMap; @@ -190,7 +189,6 @@ void Inventory::setSelectionDown(){ void Inventory::draw(void){ static unsigned int lop = 0; - //const unsigned int numSlot = 7; static std::vector<int>dfp(numSlot); static std::vector<Ray>iray(numSlot); static std::vector<vec2>curCoord(numSlot); |