aboutsummaryrefslogtreecommitdiff
path: root/engines/tsage/graphics.cpp
diff options
context:
space:
mode:
authorChristoph Mallon2012-03-13 10:06:00 +0100
committerAlyssa Milburn2012-03-13 15:43:23 +0100
commitd21cef411721984d4c6cabc7df04cbab9b725978 (patch)
tree8110a0759a69e88bb3ce576ac5965bf0982f5ed7 /engines/tsage/graphics.cpp
parentbc238a5ff38c5cb0ed563a3c56ade155b511bbde (diff)
downloadscummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.gz
scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.tar.bz2
scummvm-rg350-d21cef411721984d4c6cabc7df04cbab9b725978.zip
JANITORIAL: Avoid the ugly operator invocation syntax.
Diffstat (limited to 'engines/tsage/graphics.cpp')
-rw-r--r--engines/tsage/graphics.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tsage/graphics.cpp b/engines/tsage/graphics.cpp
index b3dceba292..0781ae4544 100644
--- a/engines/tsage/graphics.cpp
+++ b/engines/tsage/graphics.cpp
@@ -230,7 +230,7 @@ GfxSurface::GfxSurface(const GfxSurface &s) {
_lockSurfaceCtr = 0;
_customSurface = NULL;
_trackDirtyRects = false;
- this->operator =(s);
+ *this = s;
}
GfxSurface::~GfxSurface() {