mirror of
https://github.com/luanti-org/luanti.git
synced 2025-06-27 16:36:03 +00:00
Fix command line parsing
Broken by 6bc4cad0ed
, e.g.
minetest --worldname world
would be parsed as
minetest --worldname --worldname
This commit is contained in:
parent
56195dc2e4
commit
5ca5630a11
1 changed files with 1 additions and 1 deletions
|
@ -215,7 +215,7 @@ bool Settings::parseCommandLine(int argc, char *argv[],
|
||||||
<< name << "\": missing value" << std::endl;
|
<< name << "\": missing value" << std::endl;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
value = argv[i++];
|
value = argv[++i];
|
||||||
}
|
}
|
||||||
|
|
||||||
set(name, value);
|
set(name, value);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue