aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/math/rect.h
diff options
context:
space:
mode:
Diffstat (limited to 'engines/sword25/math/rect.h')
-rwxr-xr-xengines/sword25/math/rect.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/sword25/math/rect.h b/engines/sword25/math/rect.h
index 0d9ebf7c3c..9c42676d06 100755
--- a/engines/sword25/math/rect.h
+++ b/engines/sword25/math/rect.h
@@ -57,12 +57,12 @@ public:
@param right das rechte Extrem des Rechteckes + 1
@param bottom des untere Extrem des Rechteckes + 1
*/
- BS_Rect(int left, int top, int right, int bottom)
+ BS_Rect(int left_, int top_, int right_, int bottom_)
{
- this->left = left;
- this->top = top;
- this->right = right;
- this->bottom = bottom;
+ this->left = left_;
+ this->top = top_;
+ this->right = right_;
+ this->bottom = bottom_;
}
/**
@brief Verschiebt das Rechteck.
@@ -295,4 +295,4 @@ public:
}
};
-#endif \ No newline at end of file
+#endif