diff options
Diffstat (limited to 'engines/hugo/object_v1w.cpp')
| -rw-r--r-- | engines/hugo/object_v1w.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/hugo/object_v1w.cpp b/engines/hugo/object_v1w.cpp index cec8ef032a..685a3fee23 100644 --- a/engines/hugo/object_v1w.cpp +++ b/engines/hugo/object_v1w.cpp @@ -210,7 +210,7 @@ void ObjectHandler_v1w::moveObjects() {  				switch (obj->seqNumb) {  				case 4:  					if (!obj->vx) {                 // Got 4 directions -						if (obj->vx != obj->oldvx)  { // vx just stopped +						if (obj->vx != obj->oldvx) { // vx just stopped  							if (dy >= 0)  								obj->currImagePtr = obj->seqList[DOWN].seqPtr;  							else @@ -254,7 +254,7 @@ void ObjectHandler_v1w::moveObjects() {  					// Set first image in sequence (if multi-seq object)  					if (obj->seqNumb > 1) {  						if (!obj->vx && (obj->seqNumb >= 4)) { -							if (obj->vx != obj->oldvx)  { // vx just stopped +							if (obj->vx != obj->oldvx) { // vx just stopped  								if (obj->vy > 0)  									obj->currImagePtr = obj->seqList[DOWN].seqPtr;  								else  | 
