Cue sheets now use index 01.
This commit is contained in:
parent
6b7550de97
commit
40f0450343
2 changed files with 5 additions and 1 deletions
|
@ -108,9 +108,11 @@
|
|||
}
|
||||
|
||||
NSString *index = nil;
|
||||
if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index]) {
|
||||
if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index] || [index intValue] != 1) {
|
||||
continue;
|
||||
}
|
||||
|
||||
NSLog(@"Index: %@", index);
|
||||
|
||||
[scanner scanCharactersFromSet:whitespace intoString:nil];
|
||||
|
||||
|
|
|
@ -257,6 +257,7 @@
|
|||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
|
||||
SYMROOT = ../../build;
|
||||
};
|
||||
name = Debug;
|
||||
};
|
||||
|
@ -267,6 +268,7 @@
|
|||
GCC_WARN_UNUSED_VARIABLE = YES;
|
||||
PREBINDING = NO;
|
||||
SDKROOT = /Developer/SDKs/MacOSX10.4u.sdk;
|
||||
SYMROOT = ../../build;
|
||||
};
|
||||
name = Release;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue