Skip to content

Commit

Permalink
[10710] Fixed typos in my previous commit
Browse files Browse the repository at this point in the history
  • Loading branch information
SilverIce committed Nov 9, 2010
1 parent a6ab95b commit e7d9b9d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/game/GridDefines.h
Original file line number Diff line number Diff line change
Expand Up @@ -123,8 +123,8 @@ struct MANGOS_DLL_DECL CoordPair

CoordPair& normalize()
{
x_coord = std::min(x_coord, LIMIT);
y_coord = std::min(y_coord, LIMIT);
x_coord = std::min(x_coord, LIMIT-1);
y_coord = std::min(y_coord, LIMIT-1);
return *this;
}

Expand Down
2 changes: 1 addition & 1 deletion src/shared/revision_nr.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#ifndef __REVISION_NR_H__
#define __REVISION_NR_H__
#define REVISION_NR "10709"
#define REVISION_NR "10710"
#endif // __REVISION_NR_H__

0 comments on commit e7d9b9d

Please sign in to comment.