From 1d74f4e9442fcb321c2c588c69d9c47f63ea3f78 Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 12 Jan 2019 00:21:48 +0000 Subject: [PATCH] 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 --- source/build/src/build.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/build/src/build.cpp b/source/build/src/build.cpp index af9f289b6..5efa8ed58 100644 --- a/source/build/src/build.cpp +++ b/source/build/src/build.cpp @@ -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)); }