Skip to content

Commit

Permalink
main.cpp: More on debug level parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
stephengtuggy committed Jan 8, 2025
1 parent a6372ff commit 66e69cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engine/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -837,7 +837,7 @@ std::string ParseCommandLine(int argc, char **lpCmdLine) {
}

if (cmd_args.count("debug")) {
int vs_debug_level_temp = cmd_args["debug"].as<char>();
char vs_debug_level_temp = cmd_args["debug"].as<char>();
switch (vs_debug_level_temp) {
case 0:
g_game.vsdebug = 0;
Expand Down

0 comments on commit 66e69cb

Please sign in to comment.