mirror of
https://github.com/ZDoom/raze-gles.git
synced 2025-01-12 19:20:38 +00:00
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:
parent
c9390f1845
commit
1d74f4e944
1 changed files with 2 additions and 2 deletions
|
@ -1289,7 +1289,7 @@ void editinput(void)
|
||||||
goalz = pos.z;
|
goalz = pos.z;
|
||||||
if (DOWN_BK(MOVEUP)) //A
|
if (DOWN_BK(MOVEUP)) //A
|
||||||
{
|
{
|
||||||
if (eitherCTRL)
|
if (eitherALT)
|
||||||
{
|
{
|
||||||
horiz = max(-100,horiz-((DOWN_BK(RUN)+1)*synctics*2));
|
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 (DOWN_BK(MOVEDOWN)) //Z (stand low)
|
||||||
{
|
{
|
||||||
if (eitherCTRL)
|
if (eitherALT)
|
||||||
{
|
{
|
||||||
horiz = min(300,horiz+((DOWN_BK(RUN)+1)*synctics*2));
|
horiz = min(300,horiz+((DOWN_BK(RUN)+1)*synctics*2));
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue