[Scummvm-cvs-logs] scummvm master -> 100ff974cb38304890afa96f43259b55464bd888

digitall digitall at scummvm.org
Fri Jun 29 23:18:06 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:
100ff974cb TOON: Correct mismatched method definition against prototype.


Commit: 100ff974cb38304890afa96f43259b55464bd888
    https://github.com/scummvm/scummvm/commit/100ff974cb38304890afa96f43259b55464bd888
Author: D G Turner (digitall at scummvm.org)
Date: 2012-06-29T14:13:19-07:00

Commit Message:
TOON: Correct mismatched method definition against prototype.

Fixes bug #3539018 - "Toon: AmigaOS4 Compiler error in anim.cpp"

Changed paths:
    engines/toon/anim.cpp



diff --git a/engines/toon/anim.cpp b/engines/toon/anim.cpp
index 8097b18..1c85a8d 100644
--- a/engines/toon/anim.cpp
+++ b/engines/toon/anim.cpp
@@ -501,7 +501,7 @@ void AnimationInstance::setAnimation(Animation *animation, bool setRange) {
 	}
 }
 
-void AnimationInstance::setAnimationRange(int32 rangeStart, int rangeEnd) {
+void AnimationInstance::setAnimationRange(int32 rangeStart, int32 rangeEnd) {
 	debugC(5, kDebugAnim, "setAnimationRange(%d, %d)", rangeStart, rangeEnd);
 	_rangeStart = rangeStart;
 	_rangeEnd = rangeEnd;






More information about the Scummvm-git-logs mailing list