From e053cea9c003e70fbc3a7f83b79d87c0c05feecb Mon Sep 17 00:00:00 2001 From: Lars Persson Date: Sat, 25 Feb 2006 10:24:52 +0000 Subject: Small loop adjustment to compile for VC6 svn-id: r20869 --- base/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'base') diff --git a/base/main.cpp b/base/main.cpp index 1d4e7f0749..e6e02d0a25 100644 --- a/base/main.cpp +++ b/base/main.cpp @@ -433,8 +433,8 @@ extern "C" int main(int argc, char *argv[]) { } // Quick preparse of command-line, looking for special debug flags - for (int i = argc - 1; i >= 1; i--) { - s = argv[i]; + for (int ii = argc - 1; ii >= 1; ii--) { + s = argv[ii]; bool found = !strncmp(s, "--debugflags", 12); if (found) { -- cgit v1.2.3