Skip to content

Commit

Permalink
BLADERUNNER: Fixed another compilation warning
Browse files Browse the repository at this point in the history
  • Loading branch information
peterkohaut committed Mar 24, 2018
1 parent 85b4561 commit 3b06ac7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/bladerunner/item.h
Expand Up @@ -72,7 +72,7 @@ class Item {
int getFacing() const { return _facing; }
void setFacing(int facing) { _facing = facing; }

void setIsTarget(bool isTarget) { _isTarget = isTarget; }
void setIsTarget(bool val) { _isTarget = val; }

bool isTarget() const;
bool isSpinning() const { return _isSpinning; }
Expand Down

0 comments on commit 3b06ac7

Please sign in to comment.