Changed: Signed/unsigned comparison

This commit is contained in:
kervala 2016-04-15 16:11:37 +02:00
parent 28af96237c
commit 9c32da72aa

View file

@ -250,7 +250,7 @@ bool CCmdArgs::parse(const std::vector<std::string> &argv)
uint argc = argv.size();
// process each argument
for (sint i = 1; i < argc; i++)
for (uint i = 1; i < argc; i++)
{
std::string name = argv[i];