From 55f3fdb9bcdc8da451cd3a76fd727480e083580d Mon Sep 17 00:00:00 2001 From: helixhorned Date: Wed, 28 Mar 2012 19:44:14 +0000 Subject: [PATCH] numgrpfiles --> NUMGRPFILES in Apple/GameListSource.game.m git-svn-id: https://svn.eduke32.com/eduke32@2562 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Apple/GameListSource.game.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/polymer/eduke32/Apple/GameListSource.game.m b/polymer/eduke32/Apple/GameListSource.game.m index 4743c9655..9dc5a2d09 100644 --- a/polymer/eduke32/Apple/GameListSource.game.m +++ b/polymer/eduke32/Apple/GameListSource.game.m @@ -23,8 +23,8 @@ list = [[NSMutableArray alloc] init]; for (p = foundgrps; p; p=p->next) { - for (i=0; icrcval == grpfiles[i].crcval) break; - if (i == numgrpfiles) continue; + for (i=0; icrcval == grpfiles[i].crcval) break; + if (i == NUMGRPFILES) continue; [list addObject:[[GrpFile alloc] initWithGrpfile:p andName:[NSString stringWithCString:grpfiles[i].name]]]; } }