[Scummvm-cvs-logs] SF.net SVN: scummvm:[53432] scummvm/trunk/engines/sword25/math/polygon.cpp

fingolfin at users.sourceforge.net fingolfin at users.sourceforge.net
Wed Oct 13 17:41:55 CEST 2010


Revision: 53432
          http://scummvm.svn.sourceforge.net/scummvm/?rev=53432&view=rev
Author:   fingolfin
Date:     2010-10-13 15:41:55 +0000 (Wed, 13 Oct 2010)

Log Message:
-----------
SWORD25: Invoke parent's class copy constructor

Modified Paths:
--------------
    scummvm/trunk/engines/sword25/math/polygon.cpp

Modified: scummvm/trunk/engines/sword25/math/polygon.cpp
===================================================================
--- scummvm/trunk/engines/sword25/math/polygon.cpp	2010-10-13 15:41:34 UTC (rev 53431)
+++ scummvm/trunk/engines/sword25/math/polygon.cpp	2010-10-13 15:41:55 UTC (rev 53432)
@@ -49,7 +49,7 @@
 	init(vertexCount_, vertices_);
 }
 
-Polygon::Polygon(const Polygon &other) : vertexCount(0), vertices(NULL) {
+Polygon::Polygon(const Polygon &other) : Persistable(other), vertexCount(0), vertices(NULL) {
 	init(other.vertexCount, other.vertices);
 }
 


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.




More information about the Scummvm-git-logs mailing list