git-svn-id: https://svn.eduke32.com/eduke32@1096 1a8010ca-5511-0410-912e-c29ae57300e0

This commit is contained in:
terminx 2008-10-11 09:48:09 +00:00
parent efcd34c135
commit b93b724e20
2 changed files with 3 additions and 1 deletions

View file

@ -3060,8 +3060,9 @@ void getinput(int snum)
if (horiz < -MAXHORIZ) horiz = -MAXHORIZ;
if (horiz > MAXHORIZ) horiz = MAXHORIZ;
loc.extbits = 0;
if (apScriptGameEvent[EVENT_PROCESSINPUT] || apScriptGameEvent[EVENT_MOVEFORWARD])
loc.extbits = BUTTON(gamefunc_Move_Forward);
loc.extbits |= BUTTON(gamefunc_Move_Forward);
if (apScriptGameEvent[EVENT_PROCESSINPUT] || apScriptGameEvent[EVENT_MOVEBACKWARD])
loc.extbits |= BUTTON(gamefunc_Move_Backward)<<1;
if (apScriptGameEvent[EVENT_PROCESSINPUT] || apScriptGameEvent[EVENT_STRAFELEFT])

View file

@ -1179,6 +1179,7 @@ static void prelevel(char g)
{
wall[j].picnum = MIRROR;
wall[j].overpicnum = MIRROR;
wall[j].pal = 4;
}
}
}