aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/math/vertex.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/math/vertex.h')
-rwxr-xr-xengines/sword25/math/vertex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/sword25/math/vertex.h b/engines/sword25/math/vertex.h
index 71253add89..8bb88fe816 100755
--- a/engines/sword25/math/vertex.h
+++ b/engines/sword25/math/vertex.h
@@ -41,7 +41,7 @@ class BS_Vertex
{
public:
BS_Vertex() : X(0), Y(0) {};
- BS_Vertex(int X, int Y) { this->X = X; this->Y = Y; }
+ BS_Vertex(int X_, int Y_) { this->X = X_; this->Y = Y_; }
int X;
int Y;