WINTERMUTE: Remove unnecessary semicolons.

This commit is contained in:
Torbjörn Andersson 2012-09-24 00:11:49 +02:00
parent 01a458f8f2
commit f437e1df32

View File

@ -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;