Changed: Signed/unsigned comparison

--HG--
branch : develop
This commit is contained in:
kervala 2016-04-15 16:11:37 +02:00
parent d1d6f6da41
commit ccb69f8b27

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];