From 481aa198ad84c7c3b2d7b1bac0ee371cb6556390 Mon Sep 17 00:00:00 2001 From: Zeno Rogue Date: Mon, 17 Jun 2019 06:01:56 +0200 Subject: [PATCH] CLI option: -tstep --- config.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/config.cpp b/config.cpp index 500c36c0..806e23ac 100644 --- a/config.cpp +++ b/config.cpp @@ -2094,6 +2094,9 @@ int read_config_args() { else if(argis("-d:graph")) { PHASEFROM(2); launch_dialog(showGraphConfig); } + else if(argis("-tstep")) { + PHASEFROM(2); shift(); vid.texture_step = argi(); + } else return 1; return 0; }