[Scummvm-cvs-logs] scummvm master -> f437e1df32c1edfb1bf6a9770d4a2e2a38172e64

eriktorbjorn eriktorbjorn at telia.com
Mon Sep 24 00:12:53 CEST 2012


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
f437e1df32 WINTERMUTE: Remove unnecessary semicolons.


Commit: f437e1df32c1edfb1bf6a9770d4a2e2a38172e64
    https://github.com/scummvm/scummvm/commit/f437e1df32c1edfb1bf6a9770d4a2e2a38172e64
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2012-09-23T15:11:49-07:00

Commit Message:
WINTERMUTE: Remove unnecessary semicolons.

Changed paths:
    engines/wintermute/ad/ad_actor.cpp



diff --git a/engines/wintermute/ad/ad_actor.cpp b/engines/wintermute/ad/ad_actor.cpp
index 9087d66..074d5af 100644
--- a/engines/wintermute/ad/ad_actor.cpp
+++ b/engines/wintermute/ad/ad_actor.cpp
@@ -830,7 +830,7 @@ void AdActor::followPath() {
 
 	// are there points to follow?
 	if (_path->getCurrent() != NULL) {
-		_state = STATE_FOLLOWING_PATH;;
+		_state = STATE_FOLLOWING_PATH;
 		initLine(BasePoint(_posX, _posY), *_path->getCurrent());
 	} else {
 		if (_afterWalkDir != DI_NONE) {
@@ -1351,7 +1351,7 @@ bool AdActor::persist(BasePersistenceManager *persistMgr) {
 
 //////////////////////////////////////////////////////////////////////////
 TDirection AdActor::angleToDirection(int angle) {
-	TDirection ret = DI_DOWN;;
+	TDirection ret = DI_DOWN;
 
 	if (angle > -112 && angle <= -67) {
 		ret = DI_UP;






More information about the Scummvm-git-logs mailing list