mirror of
https://github.com/libretro/scummvm.git
synced 2025-01-19 00:15:30 +00:00
Small loop adjustment to compile for VC6
svn-id: r20869
This commit is contained in:
parent
f51dd597dd
commit
e053cea9c0
@ -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) {
|
||||
|
Loading…
x
Reference in New Issue
Block a user