Add a few akos codes

Give unknown akos codes better names
Rename actor variable
Remove hack (Use multi-version flag instead)
Another sound correction for HE games.

svn-id: r14827
This commit is contained in:
Travis Howell 2004-08-29 11:27:16 +00:00
parent 3540014e45
commit cbf5a60bab
11 changed files with 72 additions and 34 deletions

View file

@ -693,10 +693,10 @@ void ScummEngine_v6he::o6_actorOps() {
{
int top_actor = a->top;
int bottom_actor = a->bottom;
a->actorDrawVirScr = true;
a->drawToBackBuf = true;
a->needRedraw = true;
a->drawActorCostume();
a->actorDrawVirScr = false;
a->drawToBackBuf = false;
a->needRedraw = true;
a->drawActorCostume();
a->needRedraw = false;
@ -709,7 +709,7 @@ void ScummEngine_v6he::o6_actorOps() {
}
break;
case 219:
a->actorDrawVirScr = false;
a->drawToBackBuf = false;
a->needRedraw = true;
a->needBgReset = true;
break;