From db88c324554db2b8e70df997d734c7151752b3b5 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Thu, 10 Jan 2019 03:06:21 +0100 Subject: [PATCH] commandline options -yca and -xy --- config.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/config.cpp b/config.cpp index 2b6e9bde..540447d6 100644 --- a/config.cpp +++ b/config.cpp @@ -1796,6 +1796,16 @@ int read_config_args() { else if(argis("-msm")) { PHASEFROM(2); memory_saving_mode = true; } + else if(argis("-yca")) { + PHASEFROM(2); + shift_arg_formula(vid.yshift); + shift_arg_formula(vid.camera_angle); + } + else if(argis("-xy")) { + PHASEFROM(2); + shift_arg_formula(vid.xposition); + shift_arg_formula(vid.yposition); + } else if(argis("-msmoff")) { PHASEFROM(2); memory_saving_mode = false; }