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 authored and tomrus88 committed Nov 15, 2010
1 parent 3f0600b commit d3ec590
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
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
@@ -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 d3ec590

Please sign in to comment.