Fixed a few clipping issues in Loom the NICE way this time

svn-id: r3994
This commit is contained in:
Vincent Hamm 2002-04-18 09:19:58 +00:00
parent 6dfe2fc05f
commit 7a9a6f0363
2 changed files with 24 additions and 0 deletions

View file

@ -825,6 +825,13 @@ void Scumm::o5_actorSetClass()
newClass = getVarOrDirectWord(0x80);
if (newClass == 0) {
_classData[act] = 0;
if( _features & GF_SMALL_HEADER)
{
Actor *a;
a=derefActor(act);
a->forceClip=0;
}
continue;
}