Skip to content

Commit

Permalink
Merge branch 'master' into orbit
Browse files Browse the repository at this point in the history
  • Loading branch information
Unreal-Dan committed Jan 1, 2024
2 parents 35c195e + 9b2b98f commit 3346b2f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions VortexEngine/VortexCLI/VortexCLI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -376,15 +376,6 @@ bool VortexCLI::init(int argc, char *argv[])
// if the user wants to bypass timestep
m_noTimestep = true;
break;
case 'W':
m_writeSaveFile = optarg;
break;
case 'M':
m_writeModeFile = optarg;
break;
case 'L':
m_loadSaveFile = optarg;
break;
case 'l':
// if the user wants to step in lockstep with the engine
m_lockstep = true;
Expand Down Expand Up @@ -419,6 +410,15 @@ bool VortexCLI::init(int argc, char *argv[])
m_storageFile = optarg;
}
break;
case 'W':
m_writeSaveFile = optarg;
break;
case 'M':
m_writeModeFile = optarg;
break;
case 'L':
m_loadSaveFile = optarg;
break;
case 'I':
// read json from stdin or file
if (optarg == NULL && optind < argc && argv[optind][0] != '-') {
Expand Down

0 comments on commit 3346b2f

Please sign in to comment.