Skip to content

Commit

Permalink
Remove unnecessary cast
Browse files Browse the repository at this point in the history
  • Loading branch information
Eli2 committed May 6, 2016
1 parent 10ea72a commit b05791d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/hud/SecondaryInventory.cpp
Expand Up @@ -187,7 +187,7 @@ void SecondaryInventoryHud::draw() {
if(!inventory)
return;

bool _bSteal = (bool)((player.Interface & INTER_STEAL) != 0);
bool _bSteal = (player.Interface & INTER_STEAL) != 0;

arx_assert(m_defaultBackground);
ingame_inventory = m_defaultBackground;
Expand Down

0 comments on commit b05791d

Please sign in to comment.