diff --git a/VortexEngine/VortexCLI/VortexCLI.cpp b/VortexEngine/VortexCLI/VortexCLI.cpp index c4d200131f..346cb96c39 100644 --- a/VortexEngine/VortexCLI/VortexCLI.cpp +++ b/VortexEngine/VortexCLI/VortexCLI.cpp @@ -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; @@ -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] != '-') {