diff options
| author | Travis Howell | 2006-02-04 08:19:10 +0000 | 
|---|---|---|
| committer | Travis Howell | 2006-02-04 08:19:10 +0000 | 
| commit | 529f2602618e36ce3f578ca356f7a7c97d24d5ac (patch) | |
| tree | f74d01020eb65f213b03df40a8022470f9a3d0a7 /scumm/script_v90he.cpp | |
| parent | 0c8e751b29c518e673584ec7e4ac045f0fde9fee (diff) | |
| download | scummvm-rg350-529f2602618e36ce3f578ca356f7a7c97d24d5ac.tar.gz scummvm-rg350-529f2602618e36ce3f578ca356f7a7c97d24d5ac.tar.bz2 scummvm-rg350-529f2602618e36ce3f578ca356f7a7c97d24d5ac.zip | |
Cleanup
svn-id: r20367
Diffstat (limited to 'scumm/script_v90he.cpp')
| -rw-r--r-- | scumm/script_v90he.cpp | 20 | 
1 files changed, 10 insertions, 10 deletions
| diff --git a/scumm/script_v90he.cpp b/scumm/script_v90he.cpp index 615e32d1ad..ed729deb4e 100644 --- a/scumm/script_v90he.cpp +++ b/scumm/script_v90he.cpp @@ -1460,7 +1460,7 @@ void ScummEngine_v90he::o90_getSpriteGroupInfo() {  	case 30:  		spriteGroupId = pop();  		if (spriteGroupId) { -			_sprite->getGrouptx_ty(spriteGroupId, tx, ty); +			_sprite->getGroupPosition(spriteGroupId, tx, ty);  			push(tx);  		} else {  			push(0); @@ -1469,7 +1469,7 @@ void ScummEngine_v90he::o90_getSpriteGroupInfo() {  	case 31:  		spriteGroupId = pop();  		if (spriteGroupId) { -			_sprite->getGrouptx_ty(spriteGroupId, tx, ty); +			_sprite->getGroupPosition(spriteGroupId, tx, ty);  			push(ty);  		} else {  			push(0); @@ -1481,16 +1481,16 @@ void ScummEngine_v90he::o90_getSpriteGroupInfo() {  		if (spriteGroupId) {  			switch(type) {  			case 0: -				push(_sprite->getGroupScale_x_ratio_mul(spriteGroupId)); +				push(_sprite->getGroupXMul(spriteGroupId));  				break;  			case 1: -				push(_sprite->getGroupScale_x_ratio_div(spriteGroupId)); +				push(_sprite->getGroupXDiv(spriteGroupId));  				break;  			case 2: -				push(_sprite->getGroupScale_y_ratio_mul(spriteGroupId)); +				push(_sprite->getGroupYMul(spriteGroupId));  				break;  			case 3: -				push(_sprite->getGroupScale_y_ratio_div(spriteGroupId)); +				push(_sprite->getGroupYDiv(spriteGroupId));  				break;  			default:  				push(0); @@ -1603,16 +1603,16 @@ void ScummEngine_v90he::o90_setSpriteGroupInfo() {  		switch (type) {  		case 0: -			_sprite->setGroupScale_x_ratio_mul(_curSpriteGroupId, value1); +			_sprite->setGroupXMul(_curSpriteGroupId, value1);  			break;  		case 1: -			_sprite->setGroupScale_x_ratio_div(_curSpriteGroupId, value1); +			_sprite->setGroupXDiv(_curSpriteGroupId, value1);  			break;  		case 2: -			_sprite->setGroupScale_y_ratio_mul(_curSpriteGroupId, value1); +			_sprite->setGroupYMul(_curSpriteGroupId, value1);  			break;  		case 3: -			_sprite->setGroupScale_y_ratio_div(_curSpriteGroupId, value1); +			_sprite->setGroupYDiv(_curSpriteGroupId, value1);  			break;  		default:  			error("o90_setSpriteGroupInfo subOp 5: Unknown case %d", subOp); | 
