new CLI options for racing

This commit is contained in:
Zeno Rogue 2019-10-05 15:34:26 +02:00
parent 4e1abe964f
commit 6d4b61f0c0
1 changed files with 8 additions and 0 deletions

View File

@ -772,6 +772,14 @@ int readArgs() {
stop_game();
switch_game_mode(rg::racing);
}
else if(argis("-rsc")) {
standard_centering = true;
}
else if(argis("-rfast")) {
PHASEFROM(3);
start_game();
race_start_tick = 1;
}
else return 1;
return 0;
}