Change the hotkeys for adjusting the camera horiz in Mapster32 3d mode from ctrl + a / z to alt + a / z to avoid conflicts with the undo hotkey

git-svn-id: https://svn.eduke32.com/eduke32@7303 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
terminx 2019-01-12 00:21:48 +00:00
parent c9390f1845
commit 1d74f4e944

View file

@ -1289,7 +1289,7 @@ void editinput(void)
goalz = pos.z;
if (DOWN_BK(MOVEUP)) //A
{
if (eitherCTRL)
if (eitherALT)
{
horiz = max(-100,horiz-((DOWN_BK(RUN)+1)*synctics*2));
}
@ -1306,7 +1306,7 @@ void editinput(void)
}
if (DOWN_BK(MOVEDOWN)) //Z (stand low)
{
if (eitherCTRL)
if (eitherALT)
{
horiz = min(300,horiz+((DOWN_BK(RUN)+1)*synctics*2));
}