mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-16 06:39:17 +00:00
Fix warnings.
svn-id: r19986
This commit is contained in:
parent
6bc8719691
commit
0ff7519d0e
@ -960,13 +960,17 @@ int Actor::getFrameType(ActorFrameTypes frameType) {
|
||||
return kFrameIHNMGesture;
|
||||
case kFrameWait:
|
||||
return kFrameIHNMWait;
|
||||
case kFrameGive:
|
||||
case kFramePickUp:
|
||||
case kFrameLook:
|
||||
error("Actor::getFrameType() unknown frame type %d", frameType);
|
||||
return kFrameIHNMStand;
|
||||
}
|
||||
}
|
||||
error("Actor::getFrameType() unknown frame type %d", frameType);
|
||||
}
|
||||
|
||||
ActorFrameRange *Actor::getActorFrameRange(uint16 actorId, int frameType) {
|
||||
ActorFrameRange * fr = NULL;
|
||||
ActorData *actor;
|
||||
int fourDirection;
|
||||
static ActorFrameRange def = {0, 0};
|
||||
|
Loading…
Reference in New Issue
Block a user