Cue sheets now use index 01.

CQTexperiment
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;
if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index]) {
if (![scanner scanUpToCharactersFromSet:whitespace intoString:&index] || [index intValue] != 1) {
continue;
}
NSLog(@"Index: %@", index);
[scanner scanCharactersFromSet:whitespace intoString:nil];

View File

@ -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;
};