diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-03 15:51:59 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2015-12-03 15:51:59 -0500 |
commit | 67803d1c1ef1bb96a6cdfdfecba943378e0ec5d1 (patch) | |
tree | 4760eb115cb08c3a93cb580bf9810c266e010e81 /src | |
parent | 32595e12b9568bb4554e7665c917f770cce17344 (diff) |
fixes for wall
Diffstat (limited to 'src')
-rw-r--r-- | src/inventory.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 7761c8c..4496cdc 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -164,7 +164,7 @@ void Inventory::draw(void){ a++; } }else if(invHover){ - static int highlight = 0; + static unsigned int highlight = 0; std::cout << ui::mouse.x << "," << mouseStart.x << "," << mouseSel << std::endl; if(!mouseSel){ mouseStart.x = ui::mouse.x; @@ -183,7 +183,7 @@ void Inventory::draw(void){ } if(ui::mouse.x < mouseStart.x){ highlight = (mouseStart.x - ui::mouse.x)/45; - if(highlight<0)highlight=0; + //if(highlight<0)highlight=0; if(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(SDL_BUTTON_RIGHT)){ sel = highlight; mouseSel=false; |