aboutsummaryrefslogtreecommitdiff
path: root/engines/tony/utils.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'engines/tony/utils.cpp')
-rw-r--r--engines/tony/utils.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/tony/utils.cpp b/engines/tony/utils.cpp
index a3f79decaf..70c33e71ee 100644
--- a/engines/tony/utils.cpp
+++ b/engines/tony/utils.cpp
@@ -177,13 +177,13 @@ void RMPoint::readFromStream(Common::ReadStream &ds) {
* RMPointReference methods
\****************************************************************************/
-RMPointReference &RMPointReference::operator=(const RMPoint &p) {
- _x = p._x; _y = p._y;
+RMPointReference &RMPointReference::operator=(const RMPoint &p) {
+ _x = p._x; _y = p._y;
return *this;
}
RMPointReference &RMPointReference::operator-=(const RMPoint &p) {
- _x -= p._x; _y -= p._y;
+ _x -= p._x; _y -= p._y;
return *this;
}