diff options
Diffstat (limited to 'base')
-rw-r--r-- | base/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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) { |