mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 17:01:28 +00:00
numgrpfiles --> NUMGRPFILES in Apple/GameListSource.game.m
git-svn-id: https://svn.eduke32.com/eduke32@2562 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
3deb8d1d99
commit
55f3fdb9bc
1 changed files with 2 additions and 2 deletions
|
@ -23,8 +23,8 @@
|
|||
list = [[NSMutableArray alloc] init];
|
||||
|
||||
for (p = foundgrps; p; p=p->next) {
|
||||
for (i=0; i<numgrpfiles; i++) if (p->crcval == grpfiles[i].crcval) break;
|
||||
if (i == numgrpfiles) continue;
|
||||
for (i=0; i<NUMGRPFILES; i++) if (p->crcval == grpfiles[i].crcval) break;
|
||||
if (i == NUMGRPFILES) continue;
|
||||
[list addObject:[[GrpFile alloc] initWithGrpfile:p andName:[NSString stringWithCString:grpfiles[i].name]]];
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue