Cue sheets now use index 01.

This commit is contained in:
vspader 2007-10-12 01:15:11 +00:00
parent 6b7550de97
commit 40f0450343
2 changed files with 5 additions and 1 deletions

View file

@ -108,9 +108,11 @@
} }
NSString *index = nil; NSString *index = nil;
if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index]) { if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index] || [index intValue] != 1) {
continue; continue;
} }
NSLog(@"Index: %@", index);
[scanner scanCharactersFromSet:whitespace intoString:nil]; [scanner scanCharactersFromSet:whitespace intoString:nil];

View file

@ -257,6 +257,7 @@
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
SYMROOT = ../../build;
}; };
name = Debug; name = Debug;
}; };
@ -267,6 +268,7 @@
GCC_WARN_UNUSED_VARIABLE = YES; GCC_WARN_UNUSED_VARIABLE = YES;
PREBINDING = NO; PREBINDING = NO;
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk; SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
SYMROOT = ../../build;
}; };
name = Release; name = Release;
}; };