aboutsummaryrefslogtreecommitdiff
path: root/engines/sword25/math
diff options
context:
space:
mode:
authorJohannes Schickel2010-10-13 20:04:50 +0000
committerJohannes Schickel2010-10-13 20:04:50 +0000
commitbc2781fdb39b5c7db7154c8dd90538974907508d (patch)
treebdfd45bb16c7797ae0dd91aa05511c8d8c04b38c /engines/sword25/math
parentbbbfdad4581ce1aab757f1af6e663f9851543baa (diff)
downloadscummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.tar.gz
scummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.tar.bz2
scummvm-rg350-bc2781fdb39b5c7db7154c8dd90538974907508d.zip
SWORD25: Semi-colon cleanup.
svn-id: r53446
Diffstat (limited to 'engines/sword25/math')
-rw-r--r--engines/sword25/math/vertex.h2
-rw-r--r--engines/sword25/math/walkregion.cpp2
2 files changed, 2 insertions, 2 deletions
diff --git a/engines/sword25/math/vertex.h b/engines/sword25/math/vertex.h
index 24cd11a4e8..18ea4c082c 100644
--- a/engines/sword25/math/vertex.h
+++ b/engines/sword25/math/vertex.h
@@ -79,7 +79,7 @@ namespace Sword25 {
*/
class Vertex {
public:
- Vertex() : x(0), y(0) {};
+ Vertex() : x(0), y(0) {}
Vertex(int x_, int y_) {
this->x = x_;
this->y = y_;
diff --git a/engines/sword25/math/walkregion.cpp b/engines/sword25/math/walkregion.cpp
index 7cdd8c64c5..d47ed3d11f 100644
--- a/engines/sword25/math/walkregion.cpp
+++ b/engines/sword25/math/walkregion.cpp
@@ -95,7 +95,7 @@ struct DijkstraNode {
typedef Container::iterator Iter;
typedef Container::const_iterator ConstIter;
- DijkstraNode() : cost(Infinity), chosen(false) {};
+ DijkstraNode() : cost(Infinity), chosen(false) {}
ConstIter parentIter;
int cost;
bool chosen;