[Scummvm-cvs-logs] scummvm master -> 3c94770349bbf094f6f82af3b603f7dbff15f6d0

Strangerke Strangerke at scummvm.org
Sat Apr 20 23:49:40 CEST 2013


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:
3c94770349 HOPKINS: Fix missing break in characterRoute() CID 1003758


Commit: 3c94770349bbf094f6f82af3b603f7dbff15f6d0
    https://github.com/scummvm/scummvm/commit/3c94770349bbf094f6f82af3b603f7dbff15f6d0
Author: Strangerke (strangerke at scummvm.org)
Date: 2013-04-20T14:48:34-07:00

Commit Message:
HOPKINS: Fix missing break in characterRoute() CID 1003758

Changed paths:
    engines/hopkins/lines.cpp



diff --git a/engines/hopkins/lines.cpp b/engines/hopkins/lines.cpp
index d0ca736..379405b 100644
--- a/engines/hopkins/lines.cpp
+++ b/engines/hopkins/lines.cpp
@@ -1561,6 +1561,7 @@ int LinesManager::characterRoute(int fromX, int fromY, int destX, int destY, int
 		case DIR_DOWN_RIGHT:
 			curY += 2;
 			curX += 2;
+			break;
 		case DIR_DOWN:
 			curY += 2;
 			break;






More information about the Scummvm-git-logs mailing list