Skip to content

Commit

Permalink
Merge pull request #8156 from KA101/mapfix
Browse files Browse the repository at this point in the history
(Buildfix) redef variable
  • Loading branch information
KA101 committed Jul 6, 2014
2 parents 07ea804 + e5b6b4e commit f64e68e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3275,7 +3275,7 @@ std::list<std::pair<tripoint, item *> > map::get_rc_items( int x, int y, int z )
{
std::list<std::pair<tripoint, item *> > rc_pairs;
tripoint pos;
(int)z;
(void)z;
pos.z = abs_sub.z;
for( pos.x = 0; pos.x < SEEX * MAPSIZE; pos.x++ ) {
if( x != -1 && x != pos.x ) {
Expand Down

0 comments on commit f64e68e

Please sign in to comment.